Strategies for recognizing proper nouns in NLP

前端 未结 8 888
无人共我
无人共我 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:04

    Besides the dictionary-based approach, two others come to my mind:

    • Pattern-based approaches (in a simple form: anything that is capitalized is a proper noun)
    • Machine learning approaches (mark proper nouns in a training corpus and train a classifier)

    The field is mostly called named-entity extraction and often considered a subfield of information extraction. A good starting point for the different fields of NLP is usually the according chapter in the Oxford Handbook of Computational Linguistics:


    (source: oup.com)

提交回复
热议问题