2018-12-14
阅读量:
1047
如何比较两个单词的相似性指数
python中的nltk库比较任何两个单词的相似性指数
import nltk
from nltk.corpus import wordnet
# Let's compare the noun of "ship" and "boat:"
w1 = wordnet.synset('run.v.01') # v here denotes the tag verb
w2 = wordnet.synset('sprint.v.01')
print(w1.wup_similarity(w2))
w1 = wordnet.synset('ship.n.01')
w2 = wordnet.synset('boat.n.01') # n denotes noun
print(w1.wup_similarity(w2))






评论(0)


暂无数据
推荐帖子
0条评论
0条评论
1条评论