Kevin Meza Landeros

Update single_run_regexNER.sh

...@@ -6,13 +6,32 @@ echo ...@@ -6,13 +6,32 @@ echo
6 6
7 input="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/raw-metadata-senteneces.txt" 7 input="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/raw-metadata-senteneces.txt"
8 output="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/output/" 8 output="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/output/"
9 -regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/NER_words_Words_NoGreek.txt"
10 echo 9 echo
11 echo "input file: " $input; 10 echo "input file: " $input;
12 echo 11 echo
13 echo "output directory: " $output; 12 echo "output directory: " $output;
13 +
14 +
15 +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt"
16 +echo
17 +echo "regex file: " $regexfile;
18 +echo
19 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile;
20 +
21 +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_Alphanum.txt"
22 +echo
23 +echo "regex file: " $regexfile;
24 +echo
25 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile;
26 +
27 +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt"
14 echo 28 echo
15 echo "regex file: " $regexfile; 29 echo "regex file: " $regexfile;
16 echo 30 echo
31 +corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile;
17 32
33 +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_Alphanum.txt"
34 +echo
35 +echo "regex file: " $regexfile;
36 +echo
18 corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile; 37 corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile;
......