RE: Extending TextMarker with new actions

2013-04-29 Thread William Karl Thompson
Thanks very much for the tips -- I did notice the name change! I think I'll wait a couple of days until that series of updates has percolated through the code base, and you've had a chance to validate the update site. Best regards, Will -Original Message- From: Peter Klügl [mailto:pklu

Re: Extending TextMarker with new actions

2013-04-29 Thread Peter Klügl
Hi, Am 29.04.2013 20:22, schrieb William Karl Thompson: Hi Peter, I've updated and built the TextMarker projects, but now I'm spinning my wheels a bit trying to install the updated TextMarker Workbench feature from the projects. Could you give me a tip on how to do that? This isn't something

Re: NullPointerException when choosing a Descriptor of Collection Reader

2013-04-29 Thread Marshall Schor
now fixed in trunk. -Marshall On 4/26/2013 12:39 PM, Jens Grivolla wrote: > Hi, I just confirmed the bug (again) on my computer and created the issue: > https://issues.apache.org/jira/browse/UIMA-2841 > > This has been bothering us for a long time also, but somehow we never actually > raised the i

RE: Extending TextMarker with new actions

2013-04-29 Thread William Karl Thompson
Hi Peter, I've updated and built the TextMarker projects, but now I'm spinning my wheels a bit trying to install the updated TextMarker Workbench feature from the projects. Could you give me a tip on how to do that? This isn't something I've ever done before, and I'm not having much success at

Re: Getting the effective type system

2013-04-29 Thread Richard Eckart de Castilho
Hi, if you use the automatic type system detection feature of uimaFIT [1], you can get the full automatically detected type system by calling TypeSystemDescriptionFactory.createTypeSystemDescription(), even without an aggregate. Or you just create it from the AnalysisEngineDescription you get

Re: uimaFit way of creating an analysis description from an XML descriptor file

2013-04-29 Thread Richard Eckart de Castilho
Hi Armin, the equivalent to your code would be something like TypeSystemDescriptionFactory.createTypeSystemDescriptionFromPath("/some/path/AnalysisEngineDescriptorFile.xml") However, I'd usually prefer to store my type system descriptors as a resource in my projects, so that they end up in JARs

Re: Common type system for source code and CAS editor or Textmarker

2013-04-29 Thread Peter Klügl
Hi, Am 29.04.2013 17:16, schrieb armin.weg...@bka.bund.de: Hi! The CAS editor and Textmarker are some fine Eclipse plugins to view the results. But I haven't yet managed to build a type system which works in java code and in the editors? There's always something wrong with the paths, either

Common type system for source code and CAS editor or Textmarker

2013-04-29 Thread Armin.Wegner
Hi! The CAS editor and Textmarker are some fine Eclipse plugins to view the results. But I haven't yet managed to build a type system which works in java code and in the editors? There's always something wrong with the paths, either way. Is there a way to build a common type system, that is cre

Getting the effective type system

2013-04-29 Thread Armin.Wegner
Hi! Using org.uimafit.factory.AggregateBuilder you can aggregate analysis engines with different type systems. Is there any way to serialize the effective type system from such an aggregate or from the CAS it is using? Thanks, Armin

uimaFit way of creating an analysis description from an XML descriptor file

2013-04-29 Thread Armin.Wegner
Hi! In classical UIMA you use following code to create an AnalysisEngineDescription from an XML descriptor file. final Path descriptorFilePath = Paths.get("/some/path/", "AnalysisEngineDescriptorFile.xml"); final XMLInputSource xmlInputSource = new XMLInputSource(descriptorFilePath.toFile());