Re: uima-fit and uima annotators (in my case Whitespace annotator)

2014-01-23 Thread Richard Eckart de Castilho
Hi, can you provide the full code for your sample pipeline? I think that would make it easier to help. With the present information, I can only give some general advice. - it is not mandatory to have the type system java classes (JCas wrappers) present in a project if none of your components

Re: uima-as 2.3.1 - java.io.IOException: Frame size of 147 MB larger than max allowed 100 MB

2014-01-23 Thread Thomas Ginter
1. Your annotators can remove as well as add annotations. Perhaps if there is a large number of annotations that you don’t really need you could have a clean up annotator that removes the extra stuff, or else just don’t generate it in the first place, whatever works best for your algorithm.

Re: uima-fit and uima annotators (in my case Whitespace annotator)

2014-01-23 Thread Luca Foppiano
On Thu, Jan 23, 2014 at 3:13 PM, Richard Eckart de Castilho r...@apache.orgwrote: Hi, Hi Richard, can you provide the full code for your sample pipeline? I think that would make it easier to help. Sure, is located here: https://github.com/lfoppiano/uima-fit-sample-pipeline With the

Re: uima-fit and uima annotators (in my case Whitespace annotator)

2014-01-23 Thread Richard Eckart de Castilho
Thanks. Here are some more specific tips: You can specify all engines in the call to runPipeline - no need for the AggregateBuilder unless you need to do sofa mappings. SimplePipeline.runPipeline(reader, preparationEngine, whitespaceEngine, casConsumer)); Parameter constants typically begin

UIMA AS 2.4.2 - Listener.onBeforeMessageSend(UimaASProcessStatus status)

2014-01-23 Thread RYAN C. CORNIA
We’ve been using UIMA AS 2.4.0, with a listener that counts CASes as they are sent via the Listener.onBeforeMessageSend(UimaASProcessStatus status) method. We then compare the count with the received count in collectionProcessComplete(EntityProcessStatus aStatus) to make sure the listener has