-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtrain.sh
More file actions
24 lines (23 loc) · 827 Bytes
/
Copy pathtrain.sh
File metadata and controls
24 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CUDA_VISIBLE_DEVICES=1,2,3 python3 train.py \
--seed 2024 \
--batch-size 2 \
--accumulate-grad-batch 8 \
--num-epoch 1 \
--devices 0 1 2 \
--training-datasets anli_minicheck CG2C_hotpot_qa_rbt_mnli_failed CG2C_musique_minhop3_rbt_mnli_failed minicheck_c2d \
--model-name microsoft/deberta-v3-large \
--ckpt-save-path ckpt_factcg_dbt_stage1/ \
--data-path data/training_stage1/ \
--max-samples-per-dataset 500000
CUDA_VISIBLE_DEVICES=1,2,3 python3 train.py \
--seed 2024 \
--batch-size 2 \
--accumulate-grad-batch 8 \
--num-epoch 1 \
--devices 0 1 2 \
--training-datasets CG2C_doc minicheck_d2c \
--model-name microsoft/deberta-v3-large \
--ckpt-path ./ckpt_factcg_dbt_stage1/microsoft-deberta-v3-large_final.ckpt \
--ckpt-save-path ckpt_factcg_dbt_stage2/ \
--data-path data/training_stage2/ \
--max-samples-per-dataset 500000