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

input="/home/egaytan/GROWTH-CONDITIONS-GEO-EXTRACTION/CoreNLP/input/raw-metadata-senteneces.txt";
output="/home/egaytan/GROWTH-CONDITIONS-GEO-EXTRACTION/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;