How to compare meaningful level of a set of phrase that describe same concept in NLP?

血红的双手。 提交于 2019-12-11 16:06:08

问题


I have two terms "vehicle" and "motor vehicle". Are there any way to compare the meaningfulness level or ambiguity level of these two in NLP? The outcome should be that "motor vehicle" is more meaningful than "vehicle" or "vehicle" is more ambiguous than "motor vehicle". Thanks


回答1:


The question you ask is very broad (see here) but here are some hints for starting points:

  1. WordNet
  2. Word embeddings: word2vec, Glove

The meaning difference you are looking into is quite peculiar so I suggest starting with WordNet (there are WordNets for other languages as well). The code that uses WordNet to calculate meaning differences using WordNet you can find here.

Good framework to start an NLP journey is NLTK.



来源:https://stackoverflow.com/questions/50800803/how-to-compare-meaningful-level-of-a-set-of-phrase-that-describe-same-concept-in

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!