Re: HashMap as type feature

2013-10-16 Thread Thomas Ginter
ay() method such as: String[] keysArray = keys.toArray(); Let me know if you have any questions. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu<mailto:thomas.gin...@utah.edu> On Oct 16, 2013, at 9:55 AM, Dr. Armin Wegner mailto:arminweg...@googlemail.com>> wrote: Hi, I'

Re: HashMap as type feature

2013-10-17 Thread Thomas Ginter
inserted with the key and the corresponding key and values arrays would still match. The only caveat would be if you decided to manipulate the keys array independently after getting it from the HashMap. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Oct 17, 2013, at 8:43 AM

Re: Working with very large text documents

2013-10-18 Thread Thomas Ginter
. If your using UIMA-AS you can further scale your processing pipeline to increase throughput way beyond what CPE can provide. Also with UIMA-AS it is easy to create a listener that gathers the aggregate processed data from the segments that are returned. Thanks, Thomas Ginter 801-448-7676

Re: how to dynamically set a required annotation type from within a UIMAfit annotator?

2013-12-05 Thread Thomas Ginter
are almost ready to release this as open source, though it is still probably another month or two out. Until that time we are open to collaboration opportunities to wherein we give you access to the software and teach you how it is used. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu

Re: how to dynamically set a required annotation type from within a UIMAfit annotator?

2013-12-06 Thread Thomas Ginter
know. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Dec 5, 2013, at 1:56 PM, Renaud Richardet wrote: > @Richard, > Thanks for your explanation; it seems that it would be quite a "deep" code > change, and in my usecase not worth the trouble. > > @Tho

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

2014-01-22 Thread Thomas Ginter
important to find out what is causing this dramatic expansion and whether or not the service can be written differently so that the expansion is much smaller. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jan 22, 2014, at 9:44 AM, Mihaela M wrote: > Hello, > > I ha

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
happening after the remote service is called or else is not yet big enough to be over the 100MB limit. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jan 23, 2014, at 12:53 AM, Mihaela M wrote: > 1. I will upgrade uima-as and review the annotations gathered in the CAS, but > i

Re: uima jcas get annotation type from string

2014-02-13 Thread Thomas Ginter
There are a couple of different ways to get a pointer to specific Type object. jcas.getRequiredType(“mypackage.AnnotationType”); (cas|jcas).getTypeSystem.getType(“mypackage.AnnotationType”); The question is what do you want to do with the Type object once you have it. Thanks, Thomas Ginter

Re: uima jcas get annotation type from string

2014-02-14 Thread Thomas Ginter
= AnnotationLibrarian.getAllAnnotationsOfType(jcas, mySentenceTypeObj); which returns a list of Sentence annotation types. You can find more information about the Leo framework at the following URL: http://decipher.chpc.utah.edu/sites/gov.va.vinci/leo/2014.01.8/ Thanks, Thomas Ginter 801-448-7676 thomas.gin

Re: FilteredIterator is very slow

2014-03-31 Thread Thomas Ginter
there are a lot of dictTerm occurrences and only a few of the filter types then it may be more efficient to iterate through the filter types and eliminate dictTerms that overlap or are covered. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Mar 31, 2014, at 11:47 AM, Kline

Re: FilteredIterator is very slow

2014-04-02 Thread Thomas Ginter
much smaller N then the constant factor becomes smaller than choosing a type with a much larger N for which m approaches the NxM upper bound. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Apr 1, 2014, at 2:01 PM, Kline, Larry wrote: > Thomas, > > Thanks for the su

Re: RandomAccessFile problem in UIMA

2014-05-05 Thread Thomas Ginter
resource directory then it should be able to find your files. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On May 5, 2014, at 4:22 AM, Debbie Zhang wrote: > Thanks everyone who replied. > > I finally got extJWNL partially working. It works on Eclipse, PEAR file, CAS

Re: Restricting a aggregate engine to a substring or mention

2014-06-17 Thread Thomas Ginter
annotation type is provided then the entire document is assumed. In that way we can have annotators that perform some logic to find the regions of interest and then the subsequent annotators only operate on those regions. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jun 12

Re: Read file name in an annotator

2014-07-09 Thread Thomas Ginter
-information for each record (CAS) being processed. In short you will be better off writing your reader to provide that information for you. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jul 9, 2014, at 5:41, Debbie Zhang wrote: > Hi, > > Can anyone tell me how to read the

Re: UIMAFit and UIMA-AS deployment

2015-05-14 Thread Thomas Ginter
/userguide.html Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu > On Apr 30, 2015, at 11:33, Richard Eckart de Castilho wrote: > > Hi, > > I have tried once to use UIMA-AS and I did it in conjunction with uimaFIT. > > At the time, I didn't find any API to progr

Re: UIMAFit vs. LEO

2015-05-21 Thread Thomas Ginter
to use UIMAFit to generate the description object for an analysis engine and then insert that analysis engine into your Leo pipeline it is also relatively easy to do so. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu > On May 19, 2015, at 18:49, Petr Baudis wrote: >

Re: UIMAj3 ideas

2015-07-16 Thread Thomas Ginter
different serializer if required such as protobuff. Just a thought. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu > On Jul 16, 2015, at 10:25 AM, Petr Baudis wrote: > > Hi! > > On Fri, Jul 10, 2015 at 10:28:08AM -0400, Eddie Epstein wrote: >> Good comme

Re: UIMAj3 ideas

2015-07-16 Thread Thomas Ginter
descriptor from the programmatic parameters provided. The resulting XML is what the framework uses to generate the Spring Bean file you mentioned. That being said the existing API definitely has a learning curve which was part of the motivation for creating Leo. Thanks, Thomas Ginter 801-448

Auto-Discovery of remote AS services in UIMA

2011-04-11 Thread Thomas Ginter
some kind. Does UIMA provide some kind of API or interface for auto-discovery of provided services? Perhaps this can be partially provided via JMX? Thanks, Thomas Ginter

Re: Running UIMA on a cluster

2012-04-27 Thread Thomas Ginter
UIMA-AS was created to handle the message passing, job distribution, etc. Try going through the UIMA-AS documentation first. We have had pretty good success using it here. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Apr 27, 2012, at 1:35 PM, John David Osborne wrote

Re: Running UIMA on a cluster

2012-04-27 Thread Thomas Ginter
UIMA-AS is still at 2.3.1. For that reason we have not upgraded our core to 2.4.0 yet. You are so right about the README though. Thanks, Tom Sent from my iPhone On Apr 27, 2012, at 2:21 PM, "Eric Riebling" wrote: > Oops, sorry, spoke too soon. It's not in README any more, as of 2.4.0. D'o

Re: Maven UIMA and import by name

2012-05-11 Thread Thomas Ginter
1.6 1.6 This adds the desc and resources directories as source directories that allow you to resolve the import of descriptors by name. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On May 11, 2012, at 9:56 AM, Erik Fäßler

Exception thrown during CAS serialization for Remote UIMA-AS Service

2012-06-14 Thread Thomas Ginter
n I debug further so that I can find out A: Where is this illegal character coming from and B: How can I prevent it from happening? Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu<mailto:thomas.gin...@utah.edu>

Re: Exception thrown during CAS serialization for Remote UIMA-AS Service

2012-06-14 Thread Thomas Ginter
. I was thinking about the issue all wrong. I was assuming that all ASCII-8 characters are also valid XML-1.0 characters. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jun 14, 2012, at 3:52 PM, Jörn Kottmann wrote: > You write a string to the CAS which contains a non-

CollectionProcessComplete Event thrown with Outstanding CAS Count

2012-06-14 Thread Thomas Ginter
disconnecting from the service before the listener can process the last two CAS objects. Is there a setting I am missing to give the client more time to handle entityProcessComplete events? What I have found in the documentation so far refers to input queues for remote delegates only. Thanks, Thomas

Re: CollectionProcessComplete Event thrown with Outstanding CAS Count

2012-06-20 Thread Thomas Ginter
Thanks Jerry. BTW will we be seeing a UIMA-AS 2.4.0 sometime soon? Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jun 20, 2012, at 1:03 PM, Jaroslaw Cwiklik wrote: > I've checked the code and indeed this is a bug in uima-as client when > running with a CR. As soo

Re: SimpleServer, & instantiating CAS with custom typesystem?

2013-02-19 Thread Thomas Ginter
a Listener to catch return events from the service to know when processing is complete. You can find some additional getting started information about UIMA-AS at the following: http://uima.apache.org/doc-uimaas-what.html Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Feb