热线电话:13121318867

登录
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.0000
0
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子