├── LICENSE ├── README.md ├── allennlp_coreference_resolution.ipynb ├── huggingface_neuralcoref.ipynb ├── improvements_to_allennlp_cr.ipynb ├── intersection_strategies.ipynb ├── intersection_strategies ├── fuzzy_intersection_strategy.py ├── intersection_strategy.py ├── partial_intersection_strategy.py └── strict_intersection_strategy.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/README.md -------------------------------------------------------------------------------- /allennlp_coreference_resolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/allennlp_coreference_resolution.ipynb -------------------------------------------------------------------------------- /huggingface_neuralcoref.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/huggingface_neuralcoref.ipynb -------------------------------------------------------------------------------- /improvements_to_allennlp_cr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/improvements_to_allennlp_cr.ipynb -------------------------------------------------------------------------------- /intersection_strategies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/intersection_strategies.ipynb -------------------------------------------------------------------------------- /intersection_strategies/fuzzy_intersection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/intersection_strategies/fuzzy_intersection_strategy.py -------------------------------------------------------------------------------- /intersection_strategies/intersection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/intersection_strategies/intersection_strategy.py -------------------------------------------------------------------------------- /intersection_strategies/partial_intersection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/intersection_strategies/partial_intersection_strategy.py -------------------------------------------------------------------------------- /intersection_strategies/strict_intersection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/intersection_strategies/strict_intersection_strategy.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroSYS-pl/coreference-resolution/HEAD/utils.py --------------------------------------------------------------------------------