Hi, If i use a query like this in command line
./opennlp TokenNameFinder en-ner-person.bin <input.txt> <output.txt> I'll get person names printed in output.txt but I want to write own models such that i should print my own entities. E.g. 1. what is the risk value on icm2500. 2. Delivery of prd_234 will be arrived late. 3. Watson is handling router_34. If i pass these lines, it should parse and extract product_entities. icm2500, prd_234, router_34... etc these are all Products( we can save this information in a file and we can use it as look up kind of for models or openNLP). Can anyone please tel me how to do this ?
