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?
Asked
Active
Viewed 1,302 times
0
-
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 Answers
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!