Kevin Meza Landeros

Update single_run_regexNER.sh

...@@ -16,23 +16,23 @@ regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/On ...@@ -16,23 +16,23 @@ regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/On
16 echo 16 echo
17 echo "regex file: " $regexfile; 17 echo "regex file: " $regexfile;
18 echo 18 echo
19 -corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile; 19 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -outputExtension OneWord_Alphanum;
20 20
21 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_Alphanum.txt" 21 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_Alphanum.txt"
22 echo 22 echo
23 echo "regex file: " $regexfile; 23 echo "regex file: " $regexfile;
24 echo 24 echo
25 -corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber; 25 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -outputExtension MultWord_Alphanum;
26 26
27 27
28 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt" 28 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt"
29 echo 29 echo
30 echo "regex file: " $regexfile; 30 echo "regex file: " $regexfile;
31 echo 31 echo
32 -corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber; 32 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -outputExtension OneWord_NOAlphanum;
33 33
34 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt" 34 regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt"
35 echo 35 echo
36 echo "regex file: " $regexfile; 36 echo "regex file: " $regexfile;
37 echo 37 echo
38 -corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber; 38 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -outputExtension MultWord_NOAlphanum;
......