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-29 23:45:48 -0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
938e881bf563b4dfeca0cfdcd8ebf81d6bf484e7
938e881b
1 parent
5551b6cb
script to run CoreNLP with regex NER
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
CoreNLP/bin/single_run_regexNER.sh
CoreNLP/bin/single_run_regexNER.sh
0 → 100644
View file @
938e881
echo
echo
echo
"==============================Run CoreNLP======================================= "
;
echo
echo
input
=
"/home/kevinml/automatic-extraction-growth-conditions/CoreNLP/input/"
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
;
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