Re: Need Help

2013-09-02 Thread Jean-Philippe Fauconnier
Hello, You can use a script language (Python, Perl, etc.) to obtain that. A naive example in Perl ; ~$ echo Hi._NNP How_WRB are_VBP you?_JJ This_DT is_VBZ Mike._NNP | perl -ne 'print split(/_[A-Z]{2,3}/, $_);' ~$ Hi. How are you? This is Mike. Regards, Jean-Philippe On 02/09/13 11:06,

Re: Need Help

2013-09-02 Thread Jim
The POSTagger typically accepts an array of tokens and returns an array of pos-tags for those tokens...you already have the original sentence (tokenized) otherwise you couldn't run the POSTagger in the first place... In other words you don't really need to do anything other than concatenate

Build failed in Jenkins: OpenNLP #422

2013-09-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/OpenNLP/422/changes Changes: [joern] OPENNLP-588 eoEntityLinker does not provide a method for setting the properties file location in order to get the database connection, it is currently hard coded -- [...truncated