gpt4 book ai didi

python - "NotImplementedError: Use label() to access a node label"

转载 作者:太空狗 更新时间:2023-10-29 21:14:28 25 4
gpt4 key购买 nike

我需要从网站中提取所有城市名称。我在以前的项目中使用了 beautifulSoup 和 RE,但在这个网站上,城市名称是常规文本的一部分,没有特定的格式。我找到了满足我要求的地理包 ( https://pypi.python.org/pypi/geograpy/0.3.7)。

地理学使用 nltk 包。我为 nltk 安装了所有模型和包,但它一直抛出这个错误:

>>> import geograpy
>>> places = geograpy.get_place_context(url="http://www.state.gov/misc/list/")

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\geograpy\__init__.py", line 6, in get_place_context
e.find_entities()
File "C:\Python27\lib\site-packages\geograpy\extraction.py", line 31, in find_entities
if (ne.node == 'GPE' or ne.node == 'PERSON') and ne[0][1] == 'NNP':
File "C:\Python27\lib\site-packages\nltk\tree.py", line 198, in _get_node
raise NotImplementedError("Use label() to access a nod label.")
NotImplementedError: Use label() to access a node label.

任何帮助将不胜感激

最佳答案

您可以通过将“.node”替换为“.label()”来解决此问题。

在你的问题中,你可以尝试替换

if (ne.node == 'GPE' or ne.node == 'PERSON') and ne[0][1] == 'NNP':

if (ne.label() == 'GPE' or ne.label() == 'PERSON') and ne[0][1] == 'NNP':

关于python - "NotImplementedError: Use label() to access a node label",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27341311/

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