diff options
Diffstat (limited to 'stanford-parser-run')
| -rwxr-xr-x | stanford-parser-run | 3 |
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 - |
