-
tsmorton made 1 file-release changes.
2009-10-14 19:44:01 UTC in OpenNLP
-
Hi,
The trove jar to use is the one distributed with the code in the lib directory. The LIBNOTES file there also specifies the version used which is 1.0.2. Looks like you figured this out...Tom.
2009-10-07 22:12:54 UTC in OpenNLP
-
Hi,
That's odd this isn't the behavior of the command line tools. What types of processing are you doing? Thanks...Tom.
2009-10-06 18:30:40 UTC in OpenNLP
-
Hi,
These commands work for the latest release. They don't work on trunk. It sounds like you are not using the files in the "lang" package but instead of the packages for the individual components:
opennlp.tools.sentdetect != opennlp.tools.lang.english
Hope this helps...Tom.
2009-10-02 00:12:33 UTC in OpenNLP
-
Hi,
It's trained on Penn Treebank sections 00 and 01. Hope this helps...Tom.
2009-10-02 00:06:40 UTC in OpenNLP
-
Hi,
take a look at this thread:
https://sourceforge.net/projects/maxent/forums/forum/18385/topic/1925312
Also note that a feature with a value of "0" is ignored by the model.
Hope this helps...Tom.
2009-09-20 13:26:41 UTC in The OpenNLP Maximum Entropy Package
-
Hi,
For the first point I could check for the INC tag and not add the TOP tag in that case. It needs to be added in general as parses used for training need a TOP node.
As far as the formatting of the output goes, I don't see this as a bug. All parses output have a space between tokens. I'm not sure where the expectation that the input format is maintained comes from. If one puts...
2009-09-17 03:28:49 UTC in OpenNLP
-
Hi,
Take a look at the main() method for the sentence detector and the parser for how to initialize the class which perform these actions.
I'm not sure what you are trying to do so it's unclear what is going to make this faster for you. You have to load the models at least once which takes a while (sounds like about 12s for you). After that you can parse as many sentences as you...
2009-09-17 02:52:35 UTC in OpenNLP
-
Hi,
From your other post it looks like you have your answer that most of the time is taken loading the models. You only need to do this once, after which you can call the parser on any number of sentences.
Hope this helps...Tom.
2009-09-17 02:46:59 UTC in OpenNLP
-
Hi,
I'm not sure what to tell you. To create a model you typically specify the location of the model files on your file system. If the models aren't where you are telling the code that they are, then they won't load. Look for where in your code you are loading the models, see what path you are sending as the location of the model files, check if the files are there and adjust either the...
2009-09-11 12:57:12 UTC in OpenNLP