I am new to NLP. I am trying an example program with LexicalizedParser , but I cannot find this model.
String parseModel = "...../models/lexparser/englishPCFG.ser.gz"; LexicalizedParser lecicalizedParser = LexicalizedParser.loadModel(parseModel);
I have the required stanford-core-nlp-3.5.2.jar and ner jar also in the way of building an example Java application.
I tried to reference the absolute path of the kernel and load it, but could not. :(
How can I refer to the exact location of this model from my program code?
Thanks so much for any help and all help!
dirai source share