Skip to content

Latest commit

 

History

History
executable file
·
37 lines (25 loc) · 596 Bytes

README.md

File metadata and controls

executable file
·
37 lines (25 loc) · 596 Bytes

TAGParserDemo

Web demo for graph-based TAG parsing. See https://github.com/jungokasai/graph_parser.

Some commands

If the graph_parser submodule is missing:

git submodule init
git submodule update

If static files are missing:

python manage.py collectstatic

To restart the server on Michelangelo:

sudo apachectl restart

To run a local Django server (for testing purposes only):

python manage.py runserver

If tokenizers are missing for NLTK, run the following in the Python shell:

import nltk
nltk.download("punkt")