Choosing appropriate sense of a word from wordnet

后端 未结 3 1016
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-03 00:53

I am using Wordnet for finding synonyms of ontology concepts. How can i find choose the appropriate sense for my ontology concept. e.g there is an ontlogy concept \"conferen

相关标签:
3条回答
  • 2021-01-03 01:27

    The technology you're looking for is in the direction of semantic disambiguation / representation.

    The most "traditional approach" is Word Sense Disambiguation (WSD), take a look at

    • https://en.wikipedia.org/wiki/Word-sense_disambiguation
    • https://stackoverflow.com/questions/tagged/word-sense-disambiguation
    • Anyone know of some good Word Sense Disambiguation software?

    Then comes the next generation of Word Sense induction / Topic modelling / Knowledge representation:

    • https://en.wikipedia.org/wiki/Word-sense_induction
    • https://en.wikipedia.org/wiki/Topic_model
    • https://en.wikipedia.org/wiki/Knowledge_representation_and_reasoning

    Then comes the most recent hype:

    • Word embeddings, vector space models, neural nets

    Sometimes people skip the semantic representation and goes directly to do text similarity and by comparing pairs of sentences, the differences/similarities before getting to the ultimate aim of the text processing.

    Take a look at Normalize ranking score with weights for a list of STS related work.

    On the other direction, there's

    • ontology creation (Cyc, Yago, Freebase, etc.)
    • semantic web (https://en.wikipedia.org/wiki/Semantic_Web)
    • semantic lexical resources (WordNet, Open Multilingual WordNet, etc.)
    • Knowledge base population (http://www.nist.gov/tac/2014/KBP/)

    There's also a recent task on ontology induction / expansion:

    • http://alt.qcri.org/semeval2015/task17/
    • http://alt.qcri.org/semeval2016/task13/
    • http://alt.qcri.org/semeval2016/task14/

    Depending on the ultimate task, maybe either of the above technology would help.

    0 讨论(0)
  • 2021-01-03 01:34

    Take a look at this list: 100 Best GitHub: Word-sense Disambiguation and search by WordNet - there are several appropriate libraries.

    I didn't use any of them, but this one seems to be promising, because it is based on classic yet effective idea (namely, Lesk algorithm) upgraded by modern word-embedding methods. Actually, before finding it, I was going to suggest to try almost the same ideas.

    Note also that all methods try to find the meaning (WordNet sysnet, in your case) that is most similar to the context of the current word/collocation, so it is crucial to have context of the words you're trying to disambiguate. For example, words can come from some text and most libraries rely on that.

    0 讨论(0)
  • 2021-01-03 01:39

    You can also try Babelfy, which provides Word Sense Disambiguation and Named Entity Disambiguation.

    Demo: http://babelfy.org/

    API: http://babelfy.org/guide

    0 讨论(0)
提交回复
热议问题