-
Notifications
You must be signed in to change notification settings - Fork 19
/
llama-2-koen-13b-kobest.sh
executable file
·50 lines (41 loc) · 1.37 KB
/
llama-2-koen-13b-kobest.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
41
42
43
44
45
46
47
48
49
export TOKENIZERS_PARALLELISM=false
RESULT_DIR='results/kobest_bench'
TASKS='kobest_hellaswag,kobest_copa,kobest_boolq,kobest_sentineg'
GPU_NO=0
CURRENT_TRAINED_TOKENS=60b
MODEL=/home/jovyan/beomi/llama2-koen-13b #/home/beomi/coding-ssd2t/EasyLM/llama-2-ko-7b
MODEL_PATH=$(echo $MODEL | awk -F/ '{print $(NF-1) "/" $NF}')
echo "mkdir -p $RESULT_DIR/$MODEL_PATH/$CURRENT_TRAINED_TOKENS"
mkdir -p $RESULT_DIR/$MODEL_PATH/$CURRENT_TRAINED_TOKENS
python main.py \
--model hf-causal-experimental \
--model_args pretrained=$MODEL,use_accelerate=true \
--tasks $TASKS \
--num_fewshot 0 \
--no_cache \
--batch_size 32 \
--output_path $RESULT_DIR/$MODEL/$CURRENT_TRAINED_TOKENS/0_shot.json
python main.py \
--model hf-causal-experimental \
--model_args pretrained=$MODEL,use_accelerate=true \
--tasks $TASKS \
--num_fewshot 5 \
--no_cache \
--batch_size 16 \
--output_path $RESULT_DIR/$MODEL/$CURRENT_TRAINED_TOKENS/5_shot.json
python main.py \
--model hf-causal-experimental \
--model_args pretrained=$MODEL,use_accelerate=true \
--tasks $TASKS \
--num_fewshot 10 \
--no_cache \
--batch_size 8 \
--output_path $RESULT_DIR/$MODEL/$CURRENT_TRAINED_TOKENS/10_shot.json
python main.py \
--model hf-causal-experimental \
--model_args pretrained=$MODEL,use_accelerate=true \
--tasks $TASKS \
--num_fewshot 50 \
--no_cache \
--batch_size 4 \
--output_path $RESULT_DIR/$MODEL/$CURRENT_TRAINED_TOKENS/50_shot.json