You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. Trying to run the example code from spaCy universe. Getting the following runtime warnings when importing:
>>> import neuralcoref
<frozen importlib._bootstrap>:219: RuntimeWarning: spacy.morphology.Morphology size changed, may indicate binary incompatibility. Expected 104 from C header, got 112 from PyObject
<frozen importlib._bootstrap>:219: RuntimeWarning: spacy.vocab.Vocab size changed, may indicate binary incompatibility. Expected 96 from C header, got 112 from PyObject
<frozen importlib._bootstrap>:219: RuntimeWarning: spacy.tokens.span.Span size changed, may indicate binary incompatibility. Expected 72 from C header, got 80 from PyObject
This is a fresh install of spaCy and neuralcoref (python3 on WSL, in case that matters).
Not sure if it's related to the above, but also got a segmentation fault after
nlp = spacy.load('en')
neuralcoref.add_to_pipe(nlp)
doc1 = nlp('My sister has a dog. She loves him.')
The text was updated successfully, but these errors were encountered:
Hi. Trying to run the example code from spaCy universe. Getting the following runtime warnings when importing:
This is a fresh install of spaCy and neuralcoref (python3 on WSL, in case that matters).
Not sure if it's related to the above, but also got a segmentation fault after
The text was updated successfully, but these errors were encountered: