Re: UIMA AS 2.4.2 -> Listener.onBeforeMessageSend(UimaASProcessStatus status)

2014-01-23 Thread Jaroslaw Cwiklik
No concrete date but its a matter of weeks not months. Jerry On Thu, Jan 23, 2014 at 4:41 PM, RYAN C. CORNIA wrote: > Thanks Jerry. > > Yes, I was expecting the status to have a blank CAS or some other > difference, which it currently does not. > > Any idea on when 2.5.0 will be out? > Ryan > >

Re: UIMA AS 2.4.2 -> Listener.onBeforeMessageSend(UimaASProcessStatus status)

2014-01-23 Thread RYAN C. CORNIA
Thanks Jerry. Yes, I was expecting the status to have a blank CAS or some other difference, which it currently does not. Any idea on when 2.5.0 will be out? Ryan On 1/23/14, 2:37 PM, "Jaroslaw Cwiklik" wrote: >The UIMA-AS client code calls onBeforeMessageSend() for both Process and >CPC reque

Re: UIMA AS 2.4.2 -> Listener.onBeforeMessageSend(UimaASProcessStatus status)

2014-01-23 Thread Jaroslaw Cwiklik
The UIMA-AS client code calls onBeforeMessageSend() for both Process and CPC requests. Its just a confirmation the request was delivered to a queue. >From what I see while trying to replicate the scenario is that on CPC the status object (passed in to onBeforeMessageSend() )contains a reference to

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 r

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 wi

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 wrote: > 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 present inf

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. 2.

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 (

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

2014-01-23 Thread Luca Foppiano
Hi Everybody, I'm starting playing with uima-fit and I'm trying to integrate the whitespace annotator into my simple pipeline composed by a collection reader a simple AE (plays with the text, doesn't annotate) and I want to add a whitespace annotator to be applied to the text. I've download th