├── .gitignore ├── README.md ├── hugging_corenlp.py └── hugging_stanza.py /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore emacs files 2 | *~ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/huggingface-models/HEAD/README.md -------------------------------------------------------------------------------- /hugging_corenlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/huggingface-models/HEAD/hugging_corenlp.py -------------------------------------------------------------------------------- /hugging_stanza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/huggingface-models/HEAD/hugging_stanza.py --------------------------------------------------------------------------------