unsubscribe

2016-06-27 Thread Thomas Ginter
- To unsubscribe, e-mail: user-unsubscr...@spark.apache.org For additional commands, e-mail: user-h...@spark.apache.org

Pulling data from a secured SQL database

2015-10-30 Thread Thomas Ginter
but those machines do not have access to the databases directly. How can I pull the data from the SQL database on the smaller development machine and then have it distribute to the Spark cluster for processing? Can the driver pull data and then distribute execution? Thanks, Thomas Ginter 801

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

Re: UIMAj3 ideas

2015-07-16 Thread Thomas Ginter
in a 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 pa...@ucw.cz wrote: Hi! On Fri, Jul 10, 2015 at 10:28:08AM -0400, Eddie Epstein wrote: Good comments which will likely

Re: Generics in 2.8.0 getAllIndexedFS

2015-07-08 Thread Thomas Ginter
. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edu On Jul 8, 2015, at 09:14, Marshall Schor m...@schor.com wrote: I agree that (3) is not safe. However it imposes a burden on the user (assuming they want to use some method that's in the type but not in TOP) to cast the result

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 r...@apache.org 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 programmatically create

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 debbie.d.zh...@gmail.com wrote: Hi, Can anyone tell me how

Re: FilteredIterator is very slow

2014-03-31 Thread Thomas Ginter
of your algorithm, however if 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

Re: uima jcas get annotation type from string

2014-02-14 Thread Thomas Ginter
of the grunt work. Cheers, -- Richard greetings Hannes Am 13.02.2014 22:11, schrieb 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

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-as 2.3.1 - java.io.IOException: Frame size of 147 MB larger than max allowed 100 MB

2014-01-23 Thread Thomas Ginter
is 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 mmihaela1...@yahoo.com wrote: 1. I will upgrade uima-as and review the annotations gathered

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: 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: 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: HashMap as type feature

2013-10-16 Thread Thomas Ginter
= keys.toArray(); Let me know if you have any questions. Thanks, Thomas Ginter 801-448-7676 thomas.gin...@utah.edumailto:thomas.gin...@utah.edu On Oct 16, 2013, at 9:55 AM, Dr. Armin Wegner arminweg...@googlemail.commailto:arminweg...@googlemail.com wrote: Hi, I'd like to have a type feature

Re: SimpleServer, instantiating CAS with custom typesystem?

2013-02-19 Thread Thomas Ginter
and 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

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 soon as the CR

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-xml

CollectionProcessComplete Event thrown with Outstanding CAS Count

2012-06-14 Thread Thomas Ginter
to be 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: Maven UIMA and import by name

2012-05-11 Thread Thomas Ginter
/pluginManagement /build 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 wrote: Hello all, I have a question on how you

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