We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My env is as follows:
win10 python==3.8.18 spacy==2.3.9 en_core_web_sm==2.3.1 neuralcoref==4.0.0
and I run the following code:
import en_core_web_sm nlp = en_core_web_sm.load() import neuralcoref coref = neuralcoref.NeuralCoref(nlp.vocab) nlp.add_pipe(coref, name='neuralcoref') doc = nlp("My sister has a dog. She loves him.") print(doc)
finally, I get this result
Process` finished with exit code -1073741819 (0xC0000005)
Can anyone tell me how to solve?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My env is as follows:
and I run the following code:
finally, I get this result
Can anyone tell me how to solve?
The text was updated successfully, but these errors were encountered: