gpt4 book ai didi

jupyter-notebook - 内核在运行 Neuralcoref 时死亡

转载 作者:行者123 更新时间:2023-12-03 18:44:52 24 4
gpt4 key购买 nike

我正在尝试安装 neuralcoref 并按照提供的说明进行操作 here .

我创建了一个 jupyter notebook 并尝试运行以下代码。

# Load your usual SpaCy model (one of SpaCy English models)
import spacy
nlp = spacy.load('en')

# Add neural coref to SpaCy's pipe
import neuralcoref
neuralcoref.add_to_pipe(nlp)

# You're done. You can now use NeuralCoref as you usually manipulate a SpaCy
document annotations.
doc = nlp(u'My sister has a dog. She loves him.')

doc._.has_coref
doc._.coref_clusters

我从 jupyter 收到一条错误消息,该内核已死。即使我尝试在 python 文件中运行,但仍然无法正常工作。

操作系统 - Windows 10
内存:16GB

注意:我确实尝试过更新 numpy,但仍然没有奏效。

任何人都可以帮助我。珍惜你的时间。
谢谢

最佳答案

按照这里:https://github.com/huggingface/neuralcoref/issues/189 .

如果您将 Spacy 降级到 2.1.0,您可以让它正常工作。

pip uninstall spacy 
pip uninstall neuralcoref
pip install spacy==2.1.0
pip install neuralcoref --no-binary neuralcoref

曾为他人工作,包括我自己。笔记本现在运行良好。

关于jupyter-notebook - 内核在运行 Neuralcoref 时死亡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57008612/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com