run_thuc.sh 1.2 KB
Newer Older
T
tianxin04 已提交
1 2 3 4 5
set -eux

export FLAGS_sync_nccl_allreduce=1
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7

C
chenxuyi 已提交
6 7
export PYTHONPATH=./ernie:${PYTHONPATH:-}
python -u ./ernie/run_classifier.py \
T
tianxin04 已提交
8 9 10 11
                   --use_cuda true \
                   --do_train true \
                   --do_val true \
                   --do_test true \
T
tianxin 已提交
12
                   --verbose true \
T
tianxin04 已提交
13
                   --batch_size 8 \
T
tianxin04 已提交
14
                   --init_pretraining_params ${MODEL_PATH}/params \
T
tianxin 已提交
15 16
                   --train_set ${TASK_DATA_PATH}/thuc/train.tsv \
                   --dev_set ${TASK_DATA_PATH}/thuc/dev.tsv,${TASK_DATA_PATH}/thuc/test.tsv \
T
tianxin04 已提交
17 18
                   --vocab_path config/vocab.txt \
                   --ernie_config_path config/ernie_config.json \
T
tianxin 已提交
19
                   --checkpoints ./checkpoints \
T
tianxin04 已提交
20 21 22
                   --save_steps 1000 \
                   --weight_decay  0.01 \
                   --warmup_proportion 0.0 \
T
tianxin 已提交
23
                   --validation_steps 100 \
T
tianxin04 已提交
24 25
                   --epoch 3 \
                   --max_seq_len 512 \
T
tianxin 已提交
26
                   --learning_rate 1.5e-5 \
T
tianxin04 已提交
27 28
                   --skip_steps 10 \
                   --num_iteration_per_drop_scope 1 \
T
tianxin 已提交
29
                   --num_labels 10 \
T
tianxin04 已提交
30
                   --random_seed 1