Skip to content

Commit

Permalink
Add logging message during evaluation's score compilation step
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanpainchaud committed Jul 2, 2024
1 parent 1360ef0 commit 62f7335
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions didactic/scripts/experiments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ for task in "${!tasks_data[@]}"; do
python ~/remote/didactic/didactic/scripts/copy_model_ckpt.py $(find $src_path/$run_path -maxdepth 2 -name *.ckpt | sort | tr "\n" " ") --copy_filename='{}.ckpt' --output_dir=$target_path/$run_path >>$target_path/copy_model_ckpt.log 2>&1

# Compile the prediction scores over the different trials of each config
echo "Compiling predictions scores for $run_path model" >>$target_path/agg_prediction_scores.log 2>&1
for scores in train_categorical_scores val_categorical_scores test_categorical_scores; do
python ~/remote/didactic/didactic/scripts/compile_prediction_scores.py $(find $src_path/$run_path -name $scores.csv | sort | tr "\n" " ") --output_file=$target_path/$run_path/$scores.csv
done
Expand Down

0 comments on commit 62f7335

Please sign in to comment.