summaryrefslogtreecommitdiff
path: root/stanford-parser-run
diff options
context:
space:
mode:
authorPatrick Simianer <patrick@lilt.com>2026-02-26 10:05:59 +0000
committerPatrick Simianer <patrick@lilt.com>2026-02-26 10:05:59 +0000
commitb31ace79ea5f6b3f279c544cd3a443d6fbf2a24d (patch)
tree31f2b599fa5f6996aeb134390d58deb63eefe04a /stanford-parser-run
parent8805e95ae94d798c6441f7e1b72c90e049563f17 (diff)
overhaulHEADmaster
Diffstat (limited to 'stanford-parser-run')
-rwxr-xr-xstanford-parser-run3
1 files changed, 1 insertions, 2 deletions
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
-