forked from google-research/bert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCla_cscd_v_x_tq_tm_tn.sh
85 lines (81 loc) · 2.37 KB
/
Cla_cscd_v_x_tq_tm_tn.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env bash
python run_classifier.py\
--data_dir=data/cla_cscd_v\
--bert_config_file=models/chinese_L-12_H-768_A-12/bert_config.json\
--task_name=cla\
--vocab_file=models/chinese_L-12_H-768_A-12/vocab.txt\
--output_dir=outputs/Cla_cscd_v_base\
--init_checkpoint=models/chinese_L-12_H-768_A-12/bert_model.ckpt\
--max_seq_length=400\
--do_train=True\
--do_eval=True\
--do_predict=True\
--train_batch_size=8\
--learning_rate=2e-5\
--num_train_epochs=3.0\
--gpu=1\
--cla_nums=49
python run_classifier.py\
--data_dir=data/cla_cscd_x\
--bert_config_file=models/chinese_L-12_H-768_A-12/bert_config.json\
--task_name=cla\
--vocab_file=models/chinese_L-12_H-768_A-12/vocab.txt\
--output_dir=outputs/Cla_cscd_x_base\
--init_checkpoint=models/chinese_L-12_H-768_A-12/bert_model.ckpt\
--max_seq_length=400\
--do_train=True\
--do_eval=True\
--do_predict=True\
--train_batch_size=8\
--learning_rate=2e-5\
--num_train_epochs=3.0\
--gpu=1\
--cla_nums=78
python run_classifier.py\
--data_dir=data/cla_cscd_tq\
--bert_config_file=models/chinese_L-12_H-768_A-12/bert_config.json\
--task_name=cla\
--vocab_file=models/chinese_L-12_H-768_A-12/vocab.txt\
--output_dir=outputs/Cla_cscd_tq_base\
--init_checkpoint=models/chinese_L-12_H-768_A-12/bert_model.ckpt\
--max_seq_length=400\
--do_train=True\
--do_eval=True\
--do_predict=True\
--train_batch_size=8\
--learning_rate=2e-5\
--num_train_epochs=3.0\
--gpu=1\
--cla_nums=88
python run_classifier.py\
--data_dir=data/cla_cscd_tm\
--bert_config_file=models/chinese_L-12_H-768_A-12/bert_config.json\
--task_name=cla\
--vocab_file=models/chinese_L-12_H-768_A-12/vocab.txt\
--output_dir=outputs/Cla_cscd_tm_base\
--init_checkpoint=models/chinese_L-12_H-768_A-12/bert_model.ckpt\
--max_seq_length=400\
--do_train=True\
--do_eval=True\
--do_predict=True\
--train_batch_size=8\
--learning_rate=2e-5\
--num_train_epochs=3.0\
--gpu=1\
--cla_nums=69
python run_classifier.py\
--data_dir=data/cla_cscd_tn\
--bert_config_file=models/chinese_L-12_H-768_A-12/bert_config.json\
--task_name=cla\
--vocab_file=models/chinese_L-12_H-768_A-12/vocab.txt\
--output_dir=outputs/Cla_cscd_tn_base\
--init_checkpoint=models/chinese_L-12_H-768_A-12/bert_model.ckpt\
--max_seq_length=400\
--do_train=True\
--do_eval=True\
--do_predict=True\
--train_batch_size=8\
--learning_rate=2e-5\
--num_train_epochs=3.0\
--gpu=1\
--cla_nums=101SS