Spaces:
Sleeping
Sleeping
File size: 360 Bytes
b028d48 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env bash
#
# Runs the Lexicalized Parser GUI. You can just run this script and then
# load a grammar and file to be parsed from the menus or you can specify
# them on the command line.
#
# Usage: ./lexparser-gui.sh [parserDataFilename [textFileName]]
#
scriptdir=`dirname $0`
java -mx800m -cp "$scriptdir/*" edu.stanford.nlp.parser.ui.Parser $*
|