0

I'm using OpenNLP for data classification. I could not find TokenNameFinderModel for disease here. I know I can create my own model but I was wondering is there any large sample training data available for disease?

Peter Badida
  • 11,310
  • 10
  • 44
  • 90
Pakira
  • 1,951
  • 3
  • 25
  • 54
  • Possible duplicate of [How to create a good NER training model in OpenNLP?](http://stackoverflow.com/questions/32011615/how-to-create-a-good-ner-training-model-in-opennlp) – schrieveslaach Feb 14 '17 at 10:05

1 Answers1

1

You can easily create your own training data-set using the modelbuilder addon and follow some rules as mentioned here to train create a good NER model.

you can find some help using modelbuilder addon here.

It is basically, you put all the information in a text file and the NER entities in another. The addon searches for a paticular entity and replace it with the required tag. Hence producing the tagged data. It must be pretty easy to use this tool!

Hope this helps!

Community
  • 1
  • 1
iamgr007
  • 966
  • 1
  • 8
  • 28