Kevin Meza Landeros

Update single_run_regexNER.sh

...@@ -22,17 +22,17 @@ regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/Mu ...@@ -22,17 +22,17 @@ regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/Mu
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; 25 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber;
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; 32 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber;
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; 38 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile -noClobber;
......