-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_multiple_choice.sh
40 lines (37 loc) · 1.24 KB
/
run_multiple_choice.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# export CUDA_VISIBLE_DEVICES=0
# export ANTHROPIC_API_KEY=[key here]
# export OPENAI_API_KEY=[key here]
# Check if at least one argument is provided
if [ "$#" -lt 1 ]; then
echo "Usage: $0 <flag1> <flag2> ..."
echo "Example: $0 hf"
exit 1
fi
for flag in "$@"; do
case $flag in
hf)
echo "Executing tasks for Hugging Face..."
hf_models=(
"Qwen/Qwen2.5-3B-Instruct"
"Qwen/Qwen2.5-7B-Instruct"
"meta-llama/Llama-3.2-3B-Instruct"
"meta-llama/Llama-3.1-8B-Instruct"
"microsoft/Phi-3.5-mini-instruct"
"microsoft/phi-4"
'deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B'
"deepseek-ai/DeepSeek-R1-Distill-Qwen-7B"
)
for model in "${hf_models[@]}"; do
model_path="${model##*/}"
for dataset in "${datasets[@]}"; do
echo "Running script for HF model: $model"
lm-eval --model hf --model_args "pretrained=$model" --tasks "mastermind" --output_path "results/eval_harness"
done
done
;;
*)
echo "Unknown flag: $flag"
;;
esac
done