-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_english_speech.sh
31 lines (22 loc) · 1.04 KB
/
generate_english_speech.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
# Train data
for i in 00 01 02;do
python generate_english_speech_data.py \
/your_path/data-english/split-files/clg8_tsv_${i}_st2852.tsv \
/your_path/data-english/split-files/json-file/clg8_tsv_$i.json \
/your_path/data-english/split-files/json-file/clg8_tsv_$i.err.txt
done
# BAE19 dev data
python generate_english_speech_data.py \
/your_path/data-english/ABCN_bea19_dev.tsv \
/your_path/data-english/json-file/ABCN_bea19_dev.json \
/your_path/data-english/json-file/ABCN_bea19_dev.err.txt
# CoNLL14 test data
python generate_english_speech_data.py \
/your_path/data-english/coll14_test.tsv \
/your_path/data-english/json-file/coll14_test.json \
/your_path/data-english/json-file/coll14_test.err.txt
# BAE19 test data
python generate_english_speech_data.py \
/your_path/data-english/ABCN_bea19_test.tsv \
/your_path/data-english/json-file/ABCN_bea19_test.json \
/your_path/data-english/json-file/ABCN_bea19_test.err.txt