forked from LeoWood/bert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sbatch_Data_test.sbatch
30 lines (26 loc) · 1.11 KB
/
Sbatch_Data_test.sbatch
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
#!/bin/bash
#SBATCH -p normal
#SBATCH -N 1
#SBATCH --exclusive
#SBATCH -J data_test
#SBATCH -o data_test_12.out
python create_pretraining_data.py \
--vocab_file /public/home/zzx6320/lh/Projects/bert/models/chinese_L-12_H-768_A-12/chinese_L-12_H-768_A-12/vocab.txt \
--output_file data_test_128.tfrecord \
--input_file pre_data_test.txt \
--max_seq_length 128
python create_pretraining_data.py \
--vocab_file /public/home/zzx6320/lh/Projects/bert/models/chinese_L-12_H-768_A-12/chinese_L-12_H-768_A-12/vocab.txt \
--output_file data_test_512.tfrecord \
--input_file pre_data_test.txt \
--max_seq_length 512
python create_ernie_pretraining_data.py \
--vocab_file /public/home/zzx6320/lh/Projects/bert/models/chinese_L-12_H-768_A-12/chinese_L-12_H-768_A-12/vocab.txt \
--output_file data_test_128_wwm.tfrecord \
--input_file pre_data_test.txt \
--max_seq_length 128
python create_ernie_pretraining_data.py \
--vocab_file /public/home/zzx6320/lh/Projects/bert/models/chinese_L-12_H-768_A-12/chinese_L-12_H-768_A-12/vocab.txt \
--output_file data_test_512_wwm.tfrecord \
--input_file pre_data_test.txt \
--max_seq_length 512