.run_ce.sh 1.4 KB
Newer Older
0
0YuanZhang0 已提交
1 2 3 4
#!/bin/bash

export FLAGS_sync_nccl_allreduce=0
export FLAGS_eager_delete_tensor_gb=1.0
5 6 7

export CUDA_VISIBLE_DEVICES=0

0
0YuanZhang0 已提交
8 9 10 11 12 13
pretrain_model_path="data/saved_models/matching_pretrained"
if [ ! -d ${pretrain_model_path} ]
then
     mkdir ${pretrain_model_path}
fi

14
python -u main.py \
0
0YuanZhang0 已提交
15 16 17 18 19 20 21
      --do_train=true \
      --use_cuda=true \
      --loss_type="CLS" \
      --max_seq_len=50 \
      --save_model_path="data/saved_models/matching_pretrained" \
      --save_param="params" \
      --training_file="data/input/data/unlabel_data/train.ids" \
Z
zhengya01 已提交
22
      --epoch=3 \
0
0YuanZhang0 已提交
23 24 25 26 27 28 29 30 31 32
      --print_step=1 \
      --save_step=400 \
      --batch_size=256 \
      --hidden_size=256 \
      --emb_size=256 \
      --vocab_size=484016 \
      --learning_rate=0.001 \
      --sample_pro=0.1 \
      --enable_ce="store_true" | python _ce.py

33

Z
zhengya01 已提交
34
export CUDA_VISIBLE_DEVICES=0,1,2,3
35 36

python -u main.py \
0
0YuanZhang0 已提交
37 38
      --do_train=true \
      --use_cuda=true \
Z
zhengya01 已提交
39
      --loss_type="CLS" \
0
0YuanZhang0 已提交
40
      --max_seq_len=50 \
Z
zhengya01 已提交
41
      --save_model_path="data/saved_models/matching_pretrained" \
0
0YuanZhang0 已提交
42
      --save_param="params" \
Z
zhengya01 已提交
43 44
      --training_file="data/input/data/unlabel_data/train.ids" \
      --epoch=3 \
0
0YuanZhang0 已提交
45 46 47 48 49 50 51 52 53
      --print_step=1 \
      --save_step=400 \
      --batch_size=256 \
      --hidden_size=256 \
      --emb_size=256 \
      --vocab_size=484016 \
      --learning_rate=0.001 \
      --sample_pro=0.1 \
      --enable_ce="store_true" | python _ce.py
Z
zhengya01 已提交
54