Create process_test_data.sh
Browse files- process_test_data.sh +10 -0
process_test_data.sh
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
BenchIE=evaluation_data/BenchIE
|
| 4 |
+
Carb=evaluation_data/carb
|
| 5 |
+
Wire57=evaluation_data/wire57
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
python process.py --source_file $BenchIE/sample300_en.txt --target_file $BenchIE/benchIE_test.json --conjunctions_file $BenchIE/benchIE_conjunctions.txt
|
| 9 |
+
python process.py --source_file $Carb/data/test.txt --target_file $Carb/carb_test.json --conjunctions_file $Carb/carb_test_conjunctions.txt
|
| 10 |
+
python process.py --source_file $Wire57/gold_data/wire57_test_sentences.txt --target_file $Wire57/wire57_test.json --conjunctions_file $Wire57/wire57_conjunctions.txt
|