how to call UIMA Ruta from uimaFIT

2015-11-12 Thread Olivier Austina
Hi, I try to call a simple UIMA ruta script from uimaFIT in java. It works in plain UIMA but it didn't work in uimaFIT for me. Here is the script: PACKAGE tutorial.entity; WORDLIST MonthsList = 'month.txt'; DECLARE Month; DECLARE Year; DECLARE Date; Document{-> MARKFAST(Month, MonthsList )};

Re: how to call UIMA Ruta from uimaFIT

2015-11-12 Thread Olivier Austina
could look like > (whereas direct initialization of AE should be avoided in general): > AnalysisEngine ae = createEngine(RutaEngine.class, > RutaEngine.PARAM_MAIN_SCRIPT, > "org.apache.uima.ruta.engine.UimafitTest", > RutaEngine.PARAM_SCRIPT_PATHS, new String[] { >

Re: Getting UIMA ruta annotations

2015-10-20 Thread Olivier Austina
s cover classes and uimaFIT: > > for (Year year : JCasUtil.select(jCas, Year.class)) { >System.out.println(year.getCoveredText()); > } > > If you are familiar with maven, you should take a look at the new > example project "ruta-maven-example". > > Best, >

Getting UIMA ruta annotations

2015-10-17 Thread Olivier Austina
Hi, I am learning UIMA ruta. How to get annotations from a java program? I follow this code in the UIMA ruta document: File specFile = new File("pathToMyWorkspace/MyProject/descriptor/"+ "my/package/MyScriptEngine.xml"); XMLInputSource in = new XMLInputSource(specFile); ResourceSpecifier

remote Analysis Engines freely available

2015-10-13 Thread Olivier Austina
Hi,Is there a remote analysis engine which is freely available. No matter the Analyser type. It is for demo only. Thank you. Regards Olivier

UIMA without Eclipse

2015-09-08 Thread Olivier Austina
Hi, I am new to UIMA. How to use UIMA without Eclipse. I want to do small demo for non programmers. Is it possible to use UIMA as GATE where we can quickly choose default annotators to process a text? Thank you. Regards Olivier