Is it possible to train Stanford NER system to recognize more named entities types?

前端 未结 3 644
小鲜肉
小鲜肉 2021-01-30 09:32

I\'m using some NLP libraries now, (stanford and nltk) Stanford I saw the demo part but just want to ask if it possible to use it to identify more entity types.

So curr

3条回答
  •  死守一世寂寞
    2021-01-30 10:03

    Yes, you need your own training set. The pre-trained Stanford models only recognise the word "Stanford" as a named entity because they have been trained on data that had that word (or very similar words according to the feature set they use, I don't know what that is) marked as a named entity.

    Once you have more data, you need to put it in the right format described in this question and the Stanford tutorial.

提交回复
热议问题