Check OpenNLP build version of trained model

2017-01-12 Thread David Samuel Lim
Hello, May I know if, given a custom trained OpenNLP model, there are any ways to determine the OpenNLP version used to train it? Regards, David Lim

OpenNLP - Model version 1.6.0 not supported by this (1.5.3) version of OpenNLP

2017-01-12 Thread David Samuel Lim
Hello, I am currently facing an issue with regards to loading a custom trained NER model. My project uses OpenNLP 1.6.0 and is developed using Eclipse IDE. The model was also trained using OpenNLP 1.6.0. However, when I try to load the model *InputStream* into a *TokenNameFinderModel* object, I

[GitHub] opennlp pull request #54: OPENNLP-137: Add execution time to CLI command lin...

2017-01-12 Thread thygesen
GitHub user thygesen opened a pull request: https://github.com/apache/opennlp/pull/54 OPENNLP-137: Add execution time to CLI command line Added newline to end of execution time output You can merge this pull request into a Git repository by running: $ git pull

Re: Thread-safe versions of some of the tools

2017-01-12 Thread Thilo Goetz
On 11/01/2017 22:51, Joern Kottmann wrote: On Wed, 2017-01-11 at 11:05 +0100, Thilo Goetz wrote: in a recent project, I was using SentenceDetectorME, TokenizerME and POSTaggerME. It turns out that none of those is thread safe. This is because the classification probabilities for the last tag()

Re: Thread-safe versions of some of the tools

2017-01-12 Thread Joern Kottmann
The POSTagger interface just grew over time and I am not sure it is actually that great. Today there are different ways of returning probabilities. - tag and probs (this is POSTaggerME only and not in the interface) - tokKSequences, which returns multiple possible Sequence objects Wouldn't it

[GitHub] opennlp pull request #52: OPENNLP-935: Remove catch block to swallow IOExcep...

2017-01-12 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/opennlp/pull/52 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: Thread-safe versions of some of the tools

2017-01-12 Thread Joern Kottmann
Exactly, we do this for every code change we have. Commit rights are usually only used to merge a PR. 1. Fork our repository on github 2. Do you work on a new branch 3. Send us a PR And we need a jira as well. Project is using checkstyle and is enforcing this with compile errors, so don't be

FOSDEM 2017 Open Source Conference - Brussels

2017-01-12 Thread Sharan F
Hello Everyone This email is to tell you about ASF participation at FOSDEM. The event will be held in Brussels on 4^th & 5^th February 2017 and we are hoping that many people from our ASF projects will be there. https://fosdem.org/2017/ Attending FOSDEM is completely free and the ASF will

Re: Thread-safe versions of some of the tools

2017-01-12 Thread Thilo Goetz
On 12/01/2017 10:20, Joern Kottmann wrote: The POSTagger interface just grew over time and I am not sure it is actually that great. Today there are different ways of returning probabilities. - tag and probs (this is POSTaggerME only and not in the interface) - tokKSequences, which returns

[GitHub] opennlp pull request #52: OPENNLP-932: Remove catch block to swallow IOExcep...

2017-01-12 Thread kottmann
GitHub user kottmann opened a pull request: https://github.com/apache/opennlp/pull/52 OPENNLP-932: Remove catch block to swallow IOException You can merge this pull request into a Git repository by running: $ git pull https://github.com/kottmann/opennlp OPENNLP-935