AttributeError: 'WordNetCorpusReader' object has no attribute 'get_synsets_from_word'
AttributeError: 'WordNetCorpusReader' object has no attribute 'get_synsets_from_word'
在 python 中使用阿拉伯语 wordnet 时,我遵循此 post
并且当 运行 这个命令时 wn.get_synsets_from_word(u"جَمِيل")
引发 AttributeError:'WordNetCorpusReader' 对象没有属性 'get_synsets_from_word'
如何解决这个错误并正确使用arabic wordnet?
这个阿拉伯语 Wordnet 与 Wordnet 无关,只与名称有关。 Wordnet 没有那个功能wn.get_synsets_from_word
。您应该从 here 下载 Arabic Wordnet。
在 python 中使用阿拉伯语 wordnet 时,我遵循此 post
并且当 运行 这个命令时 wn.get_synsets_from_word(u"جَمِيل")
引发 AttributeError:'WordNetCorpusReader' 对象没有属性 'get_synsets_from_word'
如何解决这个错误并正确使用arabic wordnet?
这个阿拉伯语 Wordnet 与 Wordnet 无关,只与名称有关。 Wordnet 没有那个功能wn.get_synsets_from_word
。您应该从 here 下载 Arabic Wordnet。