Strategies for recognizing proper nouns in NLP

前端 未结 8 890
无人共我
无人共我 2020-12-08 03:42

I\'m interested in learning more about Natural Language Processing (NLP) and am curious if there are currently any strategies for recognizing proper nouns in a text that are

8条回答
  •  一整个雨季
    2020-12-08 04:01

    if you have sentence such as "who is bill gates" And if you apply part of speech tagger to it. It will give answer as

    "who/WP is/VBZ bill/NN gates/NNS ?/. "

    U can try this online on http://cst.dk/online/pos_tagger/uk/

    So you are getting what are all the nouns in this sentence. Now you can easily extract this nouns with some algorithm. I suggest to use python if you are using natural language processing. It has NLTK(Natural language toolkit) with which you can work.

提交回复
热议问题