├── README.md ├── compatibility.json └── shortcuts.json /README.md: -------------------------------------------------------------------------------- 1 | # NeuralCoref models 2 | ✨ Models for the NeuralCoref coreference resolution module. 3 | 4 | This repo is used to host the releases of models for Neuralcoref. 5 | 6 | Please find more information on how to download, install and use the models [here](https://github.com/huggingface/neuralcoref). 7 | -------------------------------------------------------------------------------- /compatibility.json: -------------------------------------------------------------------------------- 1 | { 2 | "neuralcoref": { 3 | "4.0.0": { 4 | "en_coref": ["4.0.0"] 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /shortcuts.json: -------------------------------------------------------------------------------- 1 | { 2 | "en": "en_coref" 3 | } --------------------------------------------------------------------------------