RE: Restricting a aggregate engine to a substring or mention

2014-06-20 Thread Oliver Christ
Thanks, Armin -Ursprüngliche Nachricht- Von: Oliver Christ [mailto:ochr...@ebsco.com] Gesendet: Dienstag, 17. Juni 2014 20:48 An: user@uima.apache.org Betreff: RE: Restricting a aggregate engine to a substring or mention dkpro-core's BreakIteratorSegmenter (rather: its base class) takes

Re: Restricting a aggregate engine to a substring or mention

2014-06-17 Thread Petr Baudis
On Tue, Jun 17, 2014 at 06:48:15PM +, Oliver Christ wrote: > dkpro-core's BreakIteratorSegmenter (rather: its base class) takes the same > approach. It allows you to specify that segmentation should occur within > "zones", defined by some other annotation type. And for most other dkpro-cor

RE: Restricting a aggregate engine to a substring or mention

2014-06-17 Thread Oliver Christ
PES, new String[] { MyZoneAnnotation.class.getName() })); Cheers, Oli -Original Message- From: Thomas Ginter [mailto:thomas.gin...@utah.edu] Sent: Tuesday, June 17, 2014 2:20 PM To: user@uima.apache.org Subject: Re: Restricting a aggregate engine to a substring or mention We do this by having a parameter

Re: Restricting a aggregate engine to a substring or mention

2014-06-17 Thread Thomas Ginter
We do this by having a parameter for some of our standard annotators, like our RegexAnnotator, that allows the user to specify an annotation type. If a type is specified then the operations of the annotator are restricted to the covered text of the annotation type instances specified. If no an

Re: Restricting a aggregate engine to a substring or mention

2014-06-17 Thread Marshall Schor
One other thought (probably not well-formed...): You could use 1 CAS, but multiple views. Each view can have its own subject-of-analysis. This might not work for you, though, as you might want the original subject-of-analysis in order to preserve the "offset" values for annotations' begin and en

Re: Restricting a aggregate engine to a substring or mention

2014-06-16 Thread Richard Eckart de Castilho
The CasMultiplier is not a scoping operator per se. I understood that you want to scope your AEs to specific sections of a CAS. Since there is no generic scoping operator in UIMA (that I would be aware of), the next best thing one can do (I think) is to slice the CAS into multiple CAS that each re

Re: Restricting a aggregate engine to a substring or mention

2014-06-16 Thread Dr. Armin Wegner
Hello Richard! As far as I know, CasMultipliers split the CAS in two or more new CASes, that are processed independently, and must be put together to a final CAS again. That's not what I want to do. I have only one CAS and want to add annotations to this CAS. Can this be achieved with CasMultiplie

Re: Restricting a aggregate engine to a substring or mention

2014-06-12 Thread Peter Klügl
Hi, Am 12.06.2014 17:39, schrieb Richard Eckart de Castilho: > Hi Armin, > > the only generic approach that I am aware of would be a CasMultiplier. > > Different component collections may offer alternative solutions > in general or in specific components. > > I believe Ruta has the concept of limi

Re: Restricting a aggregate engine to a substring or mention

2014-06-12 Thread Richard Eckart de Castilho
Hi Armin, the only generic approach that I am aware of would be a CasMultiplier. Different component collections may offer alternative solutions in general or in specific components. I believe Ruta has the concept of limiting rules to certain context annotation types, but I do not know if that a