-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrq1_llms.sh
executable file
·27 lines (24 loc) · 970 Bytes
/
rq1_llms.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
#!/bin/bash
# List of values for the model and split token
models=("google/gemma-1.1-7b-it <start_of_turn>model" "meta-llama/Meta-Llama-3-8B-Instruct assistant<|end_header_id|>" "mistralai/Mistral-7B-Instruct-v0.2 [/inst]")
# "google/gemma-1.1-7b-it <start_of_turn>model"
# "meta-llama/Llama-2-13b-chat-hf [/inst]"
# "meta-llama/Meta-Llama-3-8B-Instruct assistant<|end_header_id|>"
# "mistralai/Mistral-7B-Instruct-v0.2 [/inst]"
# "mistralai/Mixtral-8x7B-Instruct-v0.1 [/inst]"
# List of values for the dataset and split
datasets=("germeval test_syn" "omp Full" "schmidt test" "wikipedia Full")
# "germeval test_syn"
# "omp Full"
# "wikipedia Full"
# "schmidt test"
for model in "${models[@]}"
do
for dataset in "${datasets[@]}"
do
date
echo "Running script with model: $model and dataset: $dataset"
time python rq1_llms.py "$model" "$dataset"
echo "Script run with model: $model and dataset: $dataset completed"
done
done