Summary: Unable to find the model file used for Lemmatizer (english-lemmatizer.bin)
Details: OpenNLP Tools Models appears to be a comprehensive repository for the various models used by the different components of the Apache OpenNLP library. However, I am unable to find the model file en-lemmatizer.bin, which is used with the lemmatizer. The Apache OpenNLP Developer Manual provides the following code snippet for the Lemmatization step:
InputStream dictLemmatizer = null;
try (dictLemmatizer = new FileInputStream("english-lemmatizer.bin")) {
}
However, unlike other model files, I am just not able to find the location of this model file. Any pointers would be appreciated.