Showing
1 changed file
with
5 additions
and
4 deletions
... | @@ -12,25 +12,26 @@ echo | ... | @@ -12,25 +12,26 @@ echo |
12 | echo "output directory: " $output; | 12 | echo "output directory: " $output; |
13 | 13 | ||
14 | 14 | ||
15 | -regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt" | 15 | +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_Alphanum.txt" |
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; |
20 | 20 | ||
21 | -regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_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; | 25 | corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file $input -outputDirectory $output -regexner.mapping $regexfile; |
26 | 26 | ||
27 | -regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt" | 27 | + |
28 | +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt" | ||
28 | echo | 29 | echo |
29 | echo "regex file: " $regexfile; | 30 | echo "regex file: " $regexfile; |
30 | echo | 31 | echo |
31 | 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; |
32 | 33 | ||
33 | -regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_Alphanum.txt" | 34 | +regexfile="/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt" |
34 | echo | 35 | echo |
35 | echo "regex file: " $regexfile; | 36 | echo "regex file: " $regexfile; |
36 | echo | 37 | echo | ... | ... |
-
Please register or login to post a comment