From b31ace79ea5f6b3f279c544cd3a443d6fbf2a24d Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 26 Feb 2026 10:05:59 +0000 Subject: overhaul --- stanford-parser-run | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'stanford-parser-run') diff --git a/stanford-parser-run b/stanford-parser-run index f8d4210..37efacd 100755 --- a/stanford-parser-run +++ b/stanford-parser-run @@ -1,7 +1,7 @@ #!/bin/bash if [ $# != 1 ]; then - echo "$0 text-file" + echo "$0 text-file" exit 1 fi @@ -10,4 +10,3 @@ export CLASSPATH=:/toolbox/stanfordparser_3_2_0/* IN=$1 cat $IN | java -server -mx25000m edu.stanford.nlp.parser.lexparser.LexicalizedParser -nthreads 8 -sentences newline -encoding utf-8 -tokenized -outputFormat "typedDependencies" -outputFormatOptions "basicDependencies" edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz - | tr '\n' '\t' | sed 's/\t\t/\n/g' | sed 's/\t/ /g' | sed 's/ *$//' | sed 's/, /,/g' > $IN.stp - -- cgit v1.2.3