Re: Who is using the Maven uimaFIT plugin in open source?

2016-02-04 Thread Petr Baudis
if that qualifies. :-) -- Petr Baudis If you have good ideas, good data and fast computers, you can do almost anything. -- Geoffrey Hinton

Re: Basic UIMA questions

2016-01-14 Thread Petr Baudis
daqa/blob/master/src/main/java/cz/brmlab/yodaqa/analysis/question/FocusGenerator.java for an example of code that applies a simple set of blackboard rules to a parse tree to find a focus of a question sentence. -- Petr Baudis If you have good ideas, good data and fast computers, you can do almost anything. -- Geoffrey Hinton

Re: [UK OFFICIAL] Baleen - UIMA Based Text Analytics Framework

2015-09-28 Thread Petr Baudis
ors/src/main/java/uk/gov/dstl/baleen/annotators/cleaners/MergeAdjacentQuantities.java is something that could be pretty useful, but you might want to make it easier to discover the capabilities to get more users / contributors. Best, Petr Baudis

Re: CAS merger/multiplier N:M mapping

2015-09-06 Thread Petr Baudis
Hi! On Sun, Sep 06, 2015 at 10:58:44AM -0400, Eddie Epstein wrote: > On Sun, Sep 6, 2015 at 10:11 AM, Petr Baudis <pa...@ucw.cz> wrote: > > (ii) Use an internal "intermediary" CAS instance in process() to which > > I append my sentences, then use it as a source

Re: UIMAj3 ideas

2015-07-16 Thread Petr Baudis
On Fri, Jul 10, 2015 at 01:37:27PM -0400, Marshall Schor wrote: On 7/9/2015 6:52 PM, Petr Baudis wrote: snip... https://cwiki.apache.org/confluence/display/UIMA/Ideas+for+UIMAJ+v3 I didn't figure out how to edit that wiki page, Due to spammers, we had to turn off public editing

Re: UIMAj3 ideas

2015-07-16 Thread Petr Baudis
Hi! On Fri, Jul 10, 2015 at 10:28:08AM -0400, Eddie Epstein wrote: Good comments which will likely generate lots of responses. For now please see comments on scaleout below. On Thu, Jul 9, 2015 at 6:52 PM, Petr Baudis pa...@ucw.cz wrote: * UIMAfit is not part of core UIMA and UIMA

Re: UIMAj3 ideas

2015-07-16 Thread Petr Baudis
many UIMA users would welcome, and much smaller percentage wants to deploy to a cluster), that's what I was trying to say originally. -- Petr Baudis If you have good ideas, good data and fast computers, you can do almost anything. -- Geoffrey Hinton

Re: UIMAj3 ideas

2015-07-16 Thread Petr Baudis
On Thu, Jul 16, 2015 at 08:00:35PM +0200, Richard Eckart de Castilho wrote: On 16.07.2015, at 18:52, Petr Baudis pa...@ucw.cz wrote: Sorry for the confusion, but that's not quite what I had in mind. I literally believe that right now, in order to modify value of a feature, you need

Re: [ANN] Multi-threaded UIMA ASB

2015-07-09 Thread Petr Baudis
). -- Petr Baudis If you have good ideas, good data and fast computers, you can do almost anything. -- Geoffrey Hinton

Re: Multi-threaded UIMA ParallelStep

2015-05-20 Thread Petr Baudis
(Analysis Structure Broker), and that would be the thing to hack in this case. Am I missing something? Thanks, Petr Baudis

Multi-threaded UIMA ParallelStep

2015-05-19 Thread Petr Baudis
... Is there an option I'm missing? Any hints would be really appreciated! Thanks, Petr Baudis

UIMAFit vs. LEO

2015-05-19 Thread Petr Baudis
is that it seamlessly works with UIMA-AS (in fact it's built around UIMA-AS). * UIMAFit advantage is (if nothing else) vastly wider ecosystem. Did I get this about right? Thanks, Petr Baudis

Re: looking for lots of example UIMA code

2014-10-29 Thread Petr Baudis
for example of UIMA pipeline code rather than UIMA annotator code, https://github.com/brmson/yodaqa has a moderately interesting branched CAS pipeline. I had quite a lot of trouble finding other open source code examples that implement a non-linear pipeline. Petr Baudis

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-core's

Parallel Flow Controller?

2014-05-12 Thread Petr Baudis
Hi! In my UIMA pipeline, at a few points I have a need for some AEs to be executed logically in parallel - in particular, I'd need this in case of a few CAS multipliers. If I understand things correctly, there is no way with the fixed flow controller to execute two CAS multipliers in

Copying a CAS subset with offset correction

2014-04-27 Thread Petr Baudis
Hi! I'm trying to figure out how to reliably do deep copies from one CAS to another where the sofa of the target CAS is a subset of the source CAS. E.g. copying from the previous sentence to do deep copies from one CAS to another. One approach is to simply do something like int

Re: Deduplicating Annotations With Same coveredText

2014-04-23 Thread Petr Baudis
Hi! On Tue, Apr 22, 2014 at 05:10:56PM -0400, Marshall Schor wrote: If you plan on running your pipeline in one JVM (rather than having it scaled out over multiple JVMs), you can consider using an external resource which would be a plain Java SetString of the unique covered text so far

Re: CAS Multiplier usage in UIMAfit

2014-04-16 Thread Petr Baudis
Hi! On Wed, Apr 16, 2014 at 03:26:54PM +0900, Hugo Mougard wrote: I'm trying to use a multiplier to discard some CASes based on some annotation. It currently doesn't work (the CASes are not discarded). I also noticed several tickets opened on the suject of multipliers and am therefore not