From 41a6839cd06b40a3215c576bdb363474fe158e8c Mon Sep 17 00:00:00 2001 From: younesbelkada Date: Thu, 11 Jan 2024 09:08:19 +0000 Subject: [PATCH] change temp filename --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e6489aaca1..1495d24c9d 100644 --- a/Makefile +++ b/Makefile @@ -32,8 +32,8 @@ slow_tests_multi_gpu: CUDA_VISIBLE_DEVICES=0,1 python -m pytest tests/slow/test_dpo_slow.py $(if $(IS_GITHUB_CI),--report-log "dpo_slow_multi.log",) run_sft_examples: - touch results_sft_tests.txt + touch temp_results_sft_tests.txt for file in $(ACCELERATE_CONFIG_PATH)/*.yaml; do \ TRL_ACCELERATE_CONFIG=$${file} bash $(COMMAND_FILES_PATH)/run_sft.sh; \ - echo $$? ',' $${file} >> results_sft_tests.txt; \ + echo $$?','$${file} >> temp_results_sft_tests.txt; \ done \ No newline at end of file