single_run.sh 485 Bytes
echo
echo
echo "==============================Run CoreNLP======================================= ";
echo
echo

input="/home/egaytan/automatic-extraction-growth-conditions/CoreNLP/input/raw-metadata-senteneces_v2.txt";
output="/home/egaytan/automatic-extraction-growth-conditions/CoreNLP/output/";
echo "input file: "$input;
echo
echo "output directory: "$output;
echo
echo

corenlp.sh -annotators tokenize,ssplit,pos,lemma -outputFormat conll -file $input -outputDirectory $output;