Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Carlos-Francisco Méndez-Cruz
/
automatic-extraction-growth-conditions
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Kevin Meza Landeros
2019-10-30 18:49:36 -0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d3dfa5cc890b22ed8bfcf5c9ee9ec113d21ef7bc
d3dfa5cc
1 parent
ecd08433
Update single_run_regexNER.sh
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletions
CoreNLP/bin/single_run_regexNER.sh
CoreNLP/bin/single_run_regexNER.sh
View file @
d3dfa5c
...
...
@@ -6,13 +6,32 @@ echo
input
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/raw-metadata-senteneces.txt"
output
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/output/"
regexfile
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/NER_words_Words_NoGreek.txt"
echo
echo
"input file: "
$input
;
echo
echo
"output directory: "
$output
;
regexfile
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_NOAlphanum.txt"
echo
echo
"regex file: "
$regexfile
;
echo
corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file
$input
-outputDirectory
$output
-regexner.mapping
$regexfile
;
regexfile
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/OneWord_Alphanum.txt"
echo
echo
"regex file: "
$regexfile
;
echo
corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file
$input
-outputDirectory
$output
-regexner.mapping
$regexfile
;
regexfile
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_NOAlphanum.txt"
echo
echo
"regex file: "
$regexfile
;
echo
corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file
$input
-outputDirectory
$output
-regexner.mapping
$regexfile
;
regexfile
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/MultWord_Alphanum.txt"
echo
echo
"regex file: "
$regexfile
;
echo
corenlp.sh -annotators tokenize,ssplit,pos,lemma,regexner -outputFormat conll -file
$input
-outputDirectory
$output
-regexner.mapping
$regexfile
;
...
...
Please
register
or
login
to post a comment