-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathadd_zh.sh
executable file
·17 lines (15 loc) · 1.03 KB
/
add_zh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
echo "1-train"
sed -i 's/\.//g' "data/un1-train.zh"
sed -i 's/$/ ./g' "data/un1-train.zh"
java -mx6g -cp "stanford-corenlp-full-2015-12-09/*" edu.stanford.nlp.pipeline.StanfordCoreNLP -props "chinese2.properties" -file "data/un1-train.zh" -outputFormat text -replaceExtension --outputDirectory "data"
sed -i 's/^Sentence/\nSentence/g' "data/un1-train.out"
echo "1-dev"
sed -i 's/\.//g' "data/un1-dev.zh"
sed -i 's/$/ ./g' "data/un1-dev.zh"
java -mx6g -cp "stanford-corenlp-full-2015-12-09/*" edu.stanford.nlp.pipeline.StanfordCoreNLP -props "chinese2.properties" -file "data/un1-dev.zh" -outputFormat text -replaceExtension --outputDirectory "data"
sed -i 's/^Sentence/\nSentence/g' "data/un1-dev.out"
echo "1-test"
sed -i 's/\.//g' "data/un1-test.zh"
sed -i 's/$/ ./g' "data/un1-test.zh"
java -mx6g -cp "stanford-corenlp-full-2015-12-09/*" edu.stanford.nlp.pipeline.StanfordCoreNLP -props "chinese2.properties" -file "data/un1-test.zh" -outputFormat text -replaceExtension --outputDirectory "data"
sed -i 's/^Sentence/\nSentence/g' "data/un1-test.out"