neuralcoref icon indicating copy to clipboard operation
neuralcoref copied to clipboard

✨Fast Coreference Resolution in spaCy with Neural Networks

Results 66 neuralcoref issues
Sort by recently updated
recently updated
newest added

Happy to get feedback, but this handles 2 issues I found reducing the quality of the coref_resolved property on the output. - Don't replace Coref spans with PRONOMINAL spans. -...

Hi, I have successfully trained a custom model using neuralcoref for a set of ConLL files. However, when I add more from another set I get this error: ![image](https://user-images.githubusercontent.com/33432976/144288285-5b2860c4-46ba-4346-b382-bb5d7a185b08.png) best_model_ranking...

Hi, Thank you for developing this extension. I wonder do current implementation has an option for cross sentence coreference resolution? My workaround is adding `, ,` as sentence separator. It...

`pip install git+https://github.com/huggingface/neuralcoref.git` throws ``` RuntimeError: Running cythonize failed Cythonizing sources ``` more details below Including `pip install cython` before seems to fix it, is this the intended way to...

Is it possible to use Conll-U format with neuralcoref?

Hello. I would like to raise a feature request - Can you please add a parameter where we can specify what words we don't want removed? For instance - Input...

Hello everyone, i'm trying to train neuralcoref for french language. After training the model, i add it to the pipeline but when i execute this command: ```python doc = nlp(u"je...

training

Dear guys, Thank you so much for your interesting works. I was able to train a new model based on [this instruction](https://github.com/huggingface/neuralcoref/blob/master/neuralcoref/train/training.md) and this [blog post](https://medium.com/huggingface/how-to-train-a-neural-coreference-model-neuralcoref-2-7bb30c1abdfe). However, I could not...

question

For the code - ```python import spacy nlp = spacy.load('en_core_web_sm') import neuralcoref coref = neuralcoref.neuralcoref.NeuralCoref(nlp.vocab) nlp.add_pipe(coref, name='neuralcoref') ``` I am getting the following error - ```bash coref = neuralcoref.neuralcoref.NeuralCoref(nlp.vocab) AttributeError:...

``` en-coref-sm 3.0.0 neuralcoref 4.0 spacy 2.1.0 ``` i want to find the solution in anywhere,but i fail