neuralcoref
neuralcoref copied to clipboard
✨Fast Coreference Resolution in spaCy with Neural Networks
I have been trying for the past few hours to install using: pip install neuralcoref But I keep getting this message every single time. Anyone here who can help me...
Is this compatible with Spacy 3+ ?
Is there going to be neuralcoref compatible with spaCy 3.0 ?
When using neuralcoref `master` with `Space==2.1.0` I can use neuralcoref just fine. However the results drastically differ from the version deployed to huggingface.co/neuralcoref "She is close to the habour" yields:...
Are there any risks or vulnerabilities identified in using neuralcoref as of now?
Happens when I do: ``` pip uninstall neuralcoref pip install neuralcoref --no-binary neuralcoref # Load your usual SpaCy model (one of SpaCy English models) import spacy nlp = spacy.load('en') #...
I am using **python ==3.8.3, spacy==3.0.5, neuralcoref ==4.0.** These libraries are successfully installed. **When running the code** > import spacy > import neuralcoref > > nlp = spacy.load('en') > neuralcoref.add_to_pipe(nlp)...
. . . 🌋 Construct test file Writing in C:\Users\sk136\neuralcoref\neuralcoref\train\test_mentions.txt 🌋 Computing score Error during the scoring Command '['perl', 'C:\\Users\\sk136\\neuralcoref\\neuralcoref\\train\\scorer_wrapper.pl', 'muc', './data/dev//key.txt', 'C:\\Users\\sk136\\neuralcoref\\neuralcoref\\train\\test_mentions.txt']' returned non-zero exit status 2. Can't locate...
Example: ``` python import spacy spacy.require_gpu() >> True nlp = spacy.load("en_core_web_sm") doc = nlp("this is my example text") print(doc) >> this is my example text import neuralcoref neuralcoref.add_to_pipe(nlp) >> doc...
Hi, I run into several cases that when appositive noun or noun phrase follows another noun phrase, the coreference is not resolved to the main phrase as expected. For example:...