RE: Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Torsten Zesch
I am not sure if I exactly understand what you are trying to do, but in a setting with many views and sofa-unaware AEs, we usually use the AggregateBuilder. I found that more convenient than adding multi-view support to AEs that do not really need it. AggregateBuilder builder = new AggregateBui

Re: UIMA subiterator

2013-04-03 Thread Richard Eckart de Castilho
Hi Thomas, subiterators only work properly if type priorities have been configured. You can either use selectCovered or configure type priorities. Auto-detection of type priorities is not yet implemented in uimaFIT. See https://issues.apache.org/jira/browse/UIMA-2533 Cheers, -- Richard

Re: Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Alexandre Patry
On 13-04-03 11:10 AM, Peter Klügl wrote: Yes, but imagine you have a CAS with 10 views and you want to apply a primitive sofa-unaware AE on each view. The easiest solution I found was to write a template AAE descriptor, replaced the AE descriptor and sofa name (and mapping), instantiate the AAE,

Re: Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Jörn Kottmann
On 04/03/2013 05:10 PM, Peter Klügl wrote: Yes, but imagine you have a CAS with 10 views and you want to apply a primitive sofa-unaware AE on each view. The easiest solution I found was to write a template AAE descriptor, replaced the AE descriptor and sofa name (and mapping), instantiate the AA

Re: Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Peter Klügl
Yes, but imagine you have a CAS with 10 views and you want to apply a primitive sofa-unaware AE on each view. The easiest solution I found was to write a template AAE descriptor, replaced the AE descriptor and sofa name (and mapping), instantiate the AAE, call process(), and then repeat that for t

Con O'Leary is out of the office.

2013-04-03 Thread Con O'Leary
I will be out of the office starting 02/04/2013 and will not return until 04/04/2013. I will respond to your message when I return. If urgent please contact vincent_ke...@ie.ibm.com

RE: UIMA subiterator

2013-04-03 Thread Torsten Zesch
What is the problem? If you already use uimafit, try JCasUtil.selectCovered() instead. -Torsten > -Original Message- > From: Thomas Gruber [mailto:thomas.gru...@econob.com] > Sent: Wednesday, April 03, 2013 12:48 PM > To: user@uima.apache.org > Subject: UIMA subiterator > > Hi, > > >

UIMA subiterator

2013-04-03 Thread Thomas Gruber
Hi, I have a problem with the subiterator and would appreciate any help on this issue. I use uimafit 1.4.0 and uimaj-core 2.4.0 Subiterator in use is: http://uima.apache.org/d/uimaj-2.3.1/api/org/apache/uima/cas/text/Annotation Index.html#subiterator%28org.apache.uima.cas.text.AnnotationFS,%20

Re: Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Jörn Kottmann
Yes, you can use the sofa mapping, to map some view to the _InitialView. Have a look here: http://uima.apache.org/d/uimaj-2.4.0/tutorials_and_users_guides.html#ugr.tug.mvs.sofa_name_mapping Jörn On 04/03/2013 02:19 PM, Peter Klügl wrote: Hi, sorry for this beginner question: It there a short

Multi-view CAS and sofa-unaware AE

2013-04-03 Thread Peter Klügl
Hi, sorry for this beginner question: It there a shortcut to apply a sofa-unaware AE on CAS view that is not the _InitialView? It seems quite cumbersome to programmatically generate an aggregate analysis engine description to wrap to sofa-unaware engine. Best, Peter