# punc_flag should be False
CUDA_VISIBLE_DEVICES=6,7,8,9 python3 train.py
# With punc. punc_flag = True
CUDA_VISIBLE_DEVICES=6,7,8,9 nohup python3 -u train.py \
--vocab_path ../pretrained_models/Glove/vocab_with_punc.txt \
--pretrained_embedding_path ../pretrained_models/Glove/glove_embed_with_punc.txt \
--last_model_path ../models/bilstm_with_punc/last/model.bin \
--best_model_path ../models/bilstm_with_punc/best/model.bin \
--result_path ../results/bilstm_with_punc/test_result.txt \
--model_type bilstm > ../logs/bilstm_with_punc_training.out 2>&1 &!
# Update punc. punc_flag = False
CUDA_VISIBLE_DEVICES=6,7,8,9 nohup python3 -u train.py \
--last_model_path ../models/bilstm_new/last/model.bin \
--best_model_path ../models/bilstm_new/best/model.bin \
--result_path ../results/bilstm_new/test_result.txt \
--model_type bilstm > ../logs/bilstm_new_training.out 2>&1 &!
# Update punc. punc_flag = False. merge = True
CUDA_VISIBLE_DEVICES=5,7,8,9 nohup python3 -u train.py \
--last_model_path ../models/bilstm_new_merge/last/model.bin \
--best_model_path ../models/bilstm_new_merge/best/model.bin \
--result_path ../results/bilstm_new_merge/test_result.txt \
--model_type bilstm --merge 1 > ../logs/bilstm_new_merge_training.out 2>&1 &!
CUDA_VISIBLE_DEVICES=5,7,8,9 python3 train.py \
--last_model_path ../models/bilstm_new_merge/last/model.bin \
--best_model_path ../models/bilstm_new_merge/best/model.bin \
--result_path ../results/bilstm_new_merge/test_result.txt \
--model_type bilstm --merge 1
# Update punc. punc_flag = False. merge = True. Without Glove.
CUDA_VISIBLE_DEVICES=6,7,8,9 nohup python3 -u train.py \
--last_model_path ../models/bilstm_new_merge_random/last/model.bin \
--best_model_path ../models/bilstm_new_merge_random/best/model.bin \
--result_path ../results/bilstm_new_merge_random/test_result.txt \
--model_type bilstm --merge 1 > ../logs/bilstm_new_merge_random_training.out 2>&1 &!
# Final. punc_flag = False. merge = True
CUDA_VISIBLE_DEVICES=6,7,8,9 nohup python3 -u train.py \
--last_model_path ../models/bilstm_new_merge_final/last/model.bin \
--best_model_path ../models/bilstm_new_merge_final/best/model.bin \
--result_path ../results/bilstm_new_merge_final/test_result.txt \
--model_type bilstm --merge 1 --K 1 --epochs 20 > ../logs/bilstm_new_merge_final_training.out 2>&1 &!
CUDA_VISIBLE_DEVICES=6,7,8,9 python3 train.py \
--last_model_path ../models/bilstm_new_merge_final/last/model.bin \
--best_model_path ../models/bilstm_new_merge_final/best/model.bin \
--result_path ../results/bilstm_new_merge_final/test_result.txt \
--model_type bilstm --merge 1 --K 1 --epochs 1