Web demo for graph-based TAG parsing. See https://github.com/jungokasai/graph_parser.
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")