Re: Approach for keeping track of formatting associated with text views

2015-03-24 Thread Peter Klügl
Hi, I implemented something. If you haven't seen it yet, take a look at the new HtmlConverterXmlTest for exmaples. Best, Peter Am 14.03.2015 um 14:49 schrieb Mario Gazzo: No problem. You can contact me anytime in case you have additional questions. On 14 Mar 2015, at 14:34 , Peter

Re: Approach for keeping track of formatting associated with text views

2015-03-14 Thread Peter Klügl
/Viewer and you could maintain it in all segments when you split a CAS (e.g. with something based on the SimpleTextSegmenter example). -- Jens On Sat, Mar 7, 2015 at 5:33 PM, Peter Klügl wrote: Hi, there is no way yet to customize this behavior. The HtmlConverter only retains annotation of a

Re: Approach for keeping track of formatting associated with text views

2015-03-10 Thread Peter Klügl
ly want to introduce some sentence separation like “. “ between different tag content outside the body. I am not sure I understand your offset question. Would you mind elaborating this to me? Our documents are in XML with a single body element containing HTML. On 07 Mar 2015, at 17:33 , Peter Klügl m

Re: Approach for keeping track of formatting associated with text views

2015-03-07 Thread Peter Klügl
hat it could fit our use case. We will have a closer look at it. On 18 Feb 2015, at 21:58 , Peter Klügl wrote: Hi, you might want to take a look at two analysis engines of UIMA Ruta: HtmlAnnotator and HtmlConverter [1] The former one creates annotations for html element and therefore also

Re: Ruta select all annotations with same feature velue.

2015-02-28 Thread Peter Klügl
Hi, this is essentially a mapping from "Annotation -> Feature Value" to "Feature Value -> Annotation, Annotation,...", which is not easy to specify with regular expressions. Especially since there is no actual concept of maps in the ruta language. Nevertheless, there are several options to a

Re: Ruta partofneq

2015-02-28 Thread Peter Klügl
https://issues.apache.org/jira/browse/UIMA-4261 On 24 February 2015 at 19:35, Peter Klügl wrote: Hi, could you open an issue and attach it there? That would be great. Best, Peter Am 24.02.2015 um 18:13 schrieb Silvestre Losada: Hi Peter, The problem happens if the Annotations are

Re: Ruta partofneq

2015-02-24 Thread Peter Klügl
emoved previously from ruta basic. boolean partOf = beginAnchor.isPartOf(t) || endAnchor.isPartOf(t); if (!partOf) { return false; } I have uima ruta test project that reproduces the error I can send to you in zip file. Best. On 20 February 2015 at 20:41, Peter Klügl wrote: Hi,

Re: Ruta partofneq

2015-02-20 Thread Peter Klügl
Im using lastest version in trunk. Kind regards On 14 February 2015 at 09:29, Silvestre Losada wrote: Thanks Peter, It seems to work. On 13 February 2015 at 22:18, Peter Klügl wrote: This should work just fine and should remove both contained annotations. I just tested it with the

Re: Approach for keeping track of formatting associated with text views

2015-02-18 Thread Peter Klügl
Hi, you might want to take a look at two analysis engines of UIMA Ruta: HtmlAnnotator and HtmlConverter [1] The former one creates annotations for html element and therefore also for xml tags. The latter one creates a new view with only the plain text and adds existing annotations while adap

Re: Ruta partofneq

2015-02-13 Thread Peter Klügl
This should work just fine and should remove both contained annotations. I just tested it with the current trunk and the following script: DECLARE T1; "A B" -> T1; "B" -> T1; "B" -> T1; (T1{-> UNMARK(T1)}){PARTOFNEQ(T1)}; If applied on the test "A B", only the largest annotation remains. Can

Re: RUTA: GATHER and optional rule elements

2015-02-10 Thread Peter Klügl
Hi, this is a bug. Thanks for reporting. The bug is now fixed in the current trunk. Feature "b" won't be populated as you suggested. Best, Peter Am 10.02.2015 um 14:08 schrieb Valentin Tablan: Hi, How does GATHER interact with optional rule elements? I've not found any explicit statements

Re: RUTA and shared resources

2015-01-27 Thread Peter Klügl
at it. At least for now, greedy anchoring and markfast work as expected. But I've used only short word lists with simple entries. Cheers, Armin -Ursprüngliche Nachricht- Von: Peter Klügl [mailto:pklu...@uni-wuerzburg.de] Gesendet: Donnerstag, 22. Januar 2015 11:24 An: user@uima.

Re: RUTA and shared resources

2015-01-22 Thread Peter Klügl
Hi, Am 22.01.2015 um 09:20 schrieb armin.weg...@bka.bund.de: > Hello! > > This a very short and simple gazetteer using RUTA. > > Document{->GREEDYANCHORING(true)}; > %s*{->MARKFAST(%s,'%s')}; First of all, I am sorry that I was not yet able to implement the greedy matching for the gazetteers/word

Re: Ruta parallel execution

2015-01-09 Thread Peter Klügl
else do nothing else // no tokenization yet generate seeding annotations Best, Peter Am 09.01.2015 um 15:44 schrieb Peter Klügl: > Hi, > > Am 09.01.2015 um 15:28 schrieb Silvestre Losada: >> Hi Peter >> >> I missed this email. I see your point about th

Re: Ruta parallel execution

2015-01-09 Thread Peter Klügl
, applying one complex script, no need for high performance). I am open for all improvements. In my opinion, we should create a test pipeline as a unit test and then optimize all aspects. Best, Peter > Best Silvestre. > > On 31 December 2014 at 13:31, Peter Klügl wrote: > >>

Re: Ruta unmark tokens from given possition.

2015-01-08 Thread Peter Klügl
x27;t know if I understood your task completely. Maybe you want to filter the annotations in your actions, not processing RutaBasic? Best, Peter > Best, > > Silvestre. > > > On 7 January 2015 at 17:52, Peter Klügl wrote: > >> Hi, >> >> Am 07.01.2015 um 17:36 schrie

Re: Ruta unmark tokens from given possition.

2015-01-07 Thread Peter Klügl
Hi, Am 07.01.2015 um 17:36 schrieb Silvestre Losada: > I'm answering to my self, > > (ANY{->UNMARK(ANY)}){CONTEXTCOUNT(Document,20,2000)}; nice rule :-D but it's probably a bit slow My first guess was something with a min/max quantifier since these counting conditions like CONTEXTCOUNT and POSIT

Re: Ruta check if feature is null.

2015-01-07 Thread Peter Klügl
th a feature surname of type > uima.cas.String, it would be nice if I can evaluate the condition > > Person.surname==null > > Kind regards > > On 7 January 2015 at 14:26, Peter Klügl wrote: > >> Hi, >> >> I assume that this will only affect feature (match/assignme

Re: Ruta check if feature is null.

2015-01-07 Thread Peter Klügl
19:54 schrieb Silvestre Losada: > Hi Peter, > > I opened new feature request, so if you wish you can explain to me the > ideas that you have and I can implement it. > > > Best. > > On 5 January 2015 at 11:38, Peter Klügl wrote: > >> Hi, >> >> that's

Re: Ruta check if feature is null.

2015-01-05 Thread Peter Klügl
Hi, that's not (yet) supported. You can open a feature request if you want. This shouldn't be too complicated to implement. I already have some ideas... This functionality is specified right now in ruta by using an additional boolean feature, which stores whether the original feature was set.

Re: Ruta parallel execution

2014-12-31 Thread Peter Klügl
the capabilities of the engines, but I am not sure that they are always correctly set. What do you think? Best, Peter Kind regards. On 19 December 2014 at 17:54, Peter Klügl wrote: Am 19.12.2014 15:10, schrieb Silvestre Losada: Hi Jens, First of all thanks for your detailed answer. UIMA

Re: NPE in RUTA

2014-12-31 Thread Peter Klügl
Hi, sorry for the delayed response... holidays... yes, this is a stupid bug. The greedy anchoring is a rather new feature and I missed to add some unit tests combining it with composed (disjunctive/conjunctive) rule elements. Those exploit the normal rule inference as a look ahead by providin

Re: Ruta parallel execution

2014-12-19 Thread Peter Klügl
t;> response time, so now the analysis engines are executed sequentially and >> I >>> want to execute them in parallel, then take the output of all of them and >>> apply some ruta rules to the output. >>> >>> would it be possible. >>> >>>

Re: Ruta parallel execution

2014-12-17 Thread Peter Klügl
Hi, I haven't used UIMA-AS (with ruta) in a real application yet, but I tested it once for an rc. Did you face any problems? Best Peter Am 17.12.2014 14:34, schrieb Silvestre Losada: > Hi All, > > Is there any way to execute ruta scripts in parallel, using uima-AS > aproach? in case yes could

Re: Ruta additional extensions

2014-12-10 Thread Peter Klügl
I've committed the changes now. Peter Am 03.12.2014 21:29, schrieb Silvestre Losada: > Thanks for it. > > I'll try tomorrow. > > > Best > > El Wed Dec 03 2014 at 15:58:43, Peter Klügl () > escribió: > >> The svn commit failed. I gonna try it again l

Re: Ruta additional extensions

2014-12-04 Thread Peter Klügl
; > > -Marshall > On 12/3/2014 9:57 AM, Peter Klügl wrote: >> The svn commit failed. I gonna try it again later. >> >> Am 03.12.2014 15:45, schrieb Peter Klügl: >>> Am 03.12.2014 15:00, schrieb Peter Klügl: >>>> Unfortunately, the builder overrides the

Re: Ruta additional extensions

2014-12-03 Thread Peter Klügl
The svn commit failed. I gonna try it again later. Am 03.12.2014 15:45, schrieb Peter Klügl: > Am 03.12.2014 15:00, schrieb Peter Klügl: >> Unfortunately, the builder overrides the extensions with the provided >> ones in the workbench. >> >> I can change this if you w

Re: Ruta additional extensions

2014-12-03 Thread Peter Klügl
Am 03.12.2014 15:00, schrieb Peter Klügl: > Unfortunately, the builder overrides the extensions with the provided > ones in the workbench. > > I can change this if you want. However, it would also be reasonable to > investigate why the extension is not added anyway... Was just a

Re: Ruta additional extensions

2014-12-03 Thread Peter Klügl
did you specify an Eclipse extension? Am 03.12.2014 15:00, schrieb Peter Klügl: > Unfortunately, the builder overrides the extensions with the provided > ones in the workbench. > > I can change this if you want. However, it would also be reasonable to > investigate why the extensi

Re: Ruta additional extensions

2014-12-03 Thread Peter Klügl
Unfortunately, the builder overrides the extensions with the provided ones in the workbench. I can change this if you want. However, it would also be reasonable to investigate why the extension is not added anyway... Best, Peter Am 02.12.2014 16:57, schrieb Peter Klügl: > Hmmm, I have to ch

Re: Ruta additional extensions

2014-12-02 Thread Peter Klügl
Hmmm, I have to check it (tomorrow) ... Am 02.12.2014 16:53, schrieb Silvestre Losada: > I have it in descriptor folder however ruta workbench is not using that > file. would it be possible that ruta workbench has another one? > > > Regards > > On 2 December 2014 at 16:2

Re: Ruta additional extensions

2014-12-02 Thread Peter Klügl
should be in the descriptor folder of the ruta project Peter Am 02.12.2014 16:03, schrieb Silvestre Losada: > Hi Peter, > > Could you tell me where is located BasicEngine.xml templated? > > Thanks in advance. > > On 2 December 2014 at 13:42, Peter Klügl wrote: > >>

Re: Ruta additional extensions

2014-12-02 Thread Peter Klügl
Hi, there are two types of extension, one for the analysis engine and one for the workbench. The second takes care that the descriptor contain references to the first one. Provides the editor syntax highlighting for your new action? Do you have a plugin in the workbench that provides an Eclipse

Re: ruta update site

2014-11-14 Thread Peter Klügl
Hi, it's the same procedure as for the UIMA update site. You need to add some properties to the settings.xml in your .m2 folder (most often found in the folder for the local user). Here's an excerpt of my settings.xml: local-build-configuration D:/work/eclipse D:

Re: UIMA Ruta into jar?

2014-10-24 Thread Peter Klügl
Hi, just to summarize possible pitfalls when using a ruta project developed in the workbench in a normal UIMA/Java environment: There are two parts: 1. Contains the CAS everything needed? The CAS needs to contain all types. If the CAS is created using the analysis engine (descriptor) generated b

Re: Error in running UIMA Ruta sample file

2014-10-10 Thread Peter Klügl
iptors. Then, launch the script in the normal run mode.The debug information should then also be created in run mode. Best, Peter > Thanks for your reply! > > Regards, > > Debbie > >> -Original Message- >> From: Peter Klügl [mailto:pklu...@uni-wuerz

Re: Error in running UIMA Ruta sample file

2014-10-10 Thread Peter Klügl
ta.wrapAnalysisEngine(URL, String, boolean, String) line: 97 >RutaLauncher.main(String[]) line: 123 >/usr/lib/jvm/jdk1.6.0_32/bin/java (Oct 10, 2014, 9:56:47 AM) > > Thank you! > > Regards, > > Debbie Zhang > > Sent from my iPhone > >

Re: Error in running UIMA Ruta sample file

2014-10-09 Thread Peter Klügl
rule views. Does it mean that I don't need to run the debug > to get rules on the rule views (The Reference document said debug need to be > run)? It seems I only need to run the Main.ruta from "Annotation Test" to get > the .xmi files. > > Regards, > > Debb

Re: Error in running UIMA Ruta sample file

2014-10-09 Thread Peter Klügl
Did you clean the project after importing it? Menu->Project->Clean... Best, Peter Am 09.10.2014 11:33, schrieb Debbie Zhang: > Hi, > > I am new to UIMA Ruta. I try to learn UIMA Ruta by following the Ruta Guide > and Reference: > https://uima.apache.org/d/ruta-current/tools.ruta.book.html#ugr.to

Re: Error in running UIMA Ruta sample file

2014-10-09 Thread Peter Klügl
This sounds like the the java debugger wanted to show you some sources of an exception. If there is an excpetion, you can please post the complete stacktrace? These views are views of the CAS Editor. You need to open, for example, the xmi file in the output folder. If the CAS contains debug inform

Publication about UIMA Ruta

2014-10-09 Thread Peter Klügl
Hi, it has been about one and a half year since we renamed the system to its current and nice name. However, from then on, there was no main publication to cite in order to refer to UIMA Ruta. I can proudly announce that this changed now. The journal Natural Language Engineering just published t

YouTube Channel "Apache UIMA"

2014-10-07 Thread Peter Klügl
Hi, Apache UIMA has now it own YouTube channel: https://www.youtube.com/channel/UC1YKyoL1W-xNHs9cv4U1V9g The initial videos of the channel cover the installation of the requirements for the (German) character detection tutorial: Downloading Eclipse, downloading the TreeTagger and installing the U

[ANNOUNCE] Apache UIMA Ruta 2.2.1 released

2014-09-29 Thread Peter Klügl
/issuesFixed/jira-report.html More information about UIMA Ruta can be found here: http://uima.apache.org/ruta.html - Peter Klügl, for the Apache UIMA development team -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.17 (MingW32) iQIcBAEBAgAGBQJUKROqAAoJEEk0Q5PAkBnzHk0QAIs3W4Hm1RiRxJxTu6wxfynp

Re: Ruta-server to easily deploy Apache RUTA projects as web services

2014-08-21 Thread Peter Klügl
it before COLING. Best, Peter > Best, Renaud > > > On Tue, Aug 19, 2014 at 9:59 AM, Peter Klügl > wrote: > >> Hi, >> >> in addition to alexandre's reply: >> >> We normally use the Annotation Testing view in the Ruta Workbench for >> on

Re: Ruta - best practices for unit tests?

2014-08-19 Thread Peter Klügl
Hi, in addition to alexandre's reply: We normally use the Annotation Testing view in the Ruta Workbench for only testing the functionality of rules for an application (not the ruta implementation), but view builts on xmi and supports no text specification. If you implement something, consider to

Re: Ruta - MARKFAST

2014-06-30 Thread Peter Klügl
Am 30.06.2014 15:31, schrieb Peter Klügl: > Am 30.06.2014 14:58, schrieb armin.weg...@bka.bund.de: >> Hi, Peter! >> >> I got that. I restricted MARKFAST on segments. It works just nearly > perfect. How does MARKFAST match things? Using >> Document{->MARKFAST(My

Re: Ruta - MARKFAST

2014-06-30 Thread Peter Klügl
nce in our applications until now. Best, Peter > > on > > a b > > yields > > "a b" and "b" but not "a". > > I would like to have "a" as well. Can this be done? > > Buy the way: I love Ruta.apply(). That is exactly wha

Re: UIMA Ruta System Demonstration at COLING 2014

2014-06-30 Thread Peter Klügl
> > For those will not be around but also interested, would a YouTube video be > available later? Thank you. > > Regards, > > Debbie Zhang > >> On 30 Jun 2014, at 9:23 pm, Peter Klügl wrote: >> >> Hi, >> >> there will be a system demonstration o

UIMA Ruta System Demonstration at COLING 2014

2014-06-30 Thread Peter Klügl
Hi, there will be a system demonstration of the UIMA Ruta Workbench at COLING 2014 (http://www.coling-2014.org/) in Dublin. If you happen to be around and interested in UIMA, rule-based approaches and tooling support, consider to take a look. Best, Peter

Re: Ruta - MARKFAST

2014-06-30 Thread Peter Klügl
Hi, Am 30.06.2014 11:32, schrieb armin.weg...@bka.bund.de: > Hello! > > On which annotation type does MARFKAST work? It is applied on the annotations, on which the rule element of the action matched. Document{-> MARKFAST(...)}; ... causes a dictionary lookup on the complete document. Sentence{C

Re: Restricting a aggregate engine to a substring or mention

2014-06-12 Thread Peter Klügl
Hi, Am 12.06.2014 17:39, schrieb Richard Eckart de Castilho: > Hi Armin, > > the only generic approach that I am aware of would be a CasMultiplier. > > Different component collections may offer alternative solutions > in general or in specific components. > > I believe Ruta has the concept of limi

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-23 Thread Peter Klügl
Thanks :-) Peter Am 23.04.2014 00:07, schrieb Eddie Epstein: > I think so too. Have created > https://issues.apache.org/jira/browse/UIMA-3765to cover this work. > > Eddie > > > On Tue, Apr 22, 2014 at 12:26 PM, Peter Klügl wrote: > >> Am 22.04.2014 18:20, schrieb

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-22 Thread Peter Klügl
Am 22.04.2014 18:20, schrieb Peter Klügl: > Am 22.04.2014 18:10, schrieb Eddie Epstein: >> The current design supports passing a specific view to an annotator: >> map the desired view to the default view and do not declare the >> annotator view aware by declaring input or o

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-22 Thread Peter Klügl
ead of a specific one, and the analysis engine retrieves that view if the base CAS is given. So, no need for an additional parameter. That's all I wanted :-) Thanks Eddie, Peter > Eddie > > > > > On Tue, Apr 22, 2014 at 6:47 AM, Peter Klügl wrote: > >> Am 18.04.2014

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-22 Thread Peter Klügl
12:47, schrieb Peter Klügl: > Am 18.04.2014 15:23, schrieb Eddie Epstein: >> On Thu, Apr 17, 2014 at 9:17 AM, Peter Klügl wrote: >> >>> Am 17.04.2014 15:01, schrieb Eddie Epstein: >>>> Hi Peter, >>>> >>>> The logic is that since a sofa aware co

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-22 Thread Peter Klügl
Am 18.04.2014 15:23, schrieb Eddie Epstein: > On Thu, Apr 17, 2014 at 9:17 AM, Peter Klügl wrote: > >> Am 17.04.2014 15:01, schrieb Eddie Epstein: >>> Hi Peter, >>> >>> The logic is that since a sofa aware component may have one or >>> more input an

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
Am 17.04.2014 15:39, schrieb Richard Eckart de Castilho: > On 17.04.2014, at 15:31, Peter Klügl wrote: > >> That would work, if the modifier AEs that create new views are not cascaded. > Btw: I think it would be great if UIMA did offer a mechanism that would > allow an AE to re

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
Am 17.04.2014 15:18, schrieb Richard Eckart de Castilho: > Have a look at this thread. I believe to have discussed the same general > issue with Luca there: > > http://markmail.org/thread/dgwku65srpvqdvdr > > At least, maybe that helps to better pinpoint the problem. That would work, if the modifi

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
btw, here's the StackOverflow question that caused me to investigate the problem: http://stackoverflow.com/questions/23002788/uima-ruta-sofa-mapping-in-aggregate-pipeline Peter Am 17.04.2014 14:04, schrieb Peter Klügl: > Hi, > > as I understand the implementation, an AE is so

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
e that the AE implementation should be used several times in an AAE for different views. Peter > Eddie > > > > On Thu, Apr 17, 2014 at 8:04 AM, Peter Klügl wrote: > >> Hi, >> >> as I understand the implementation, an AE is sofa aware if it specifies >>

Re: Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
Am 17.04.2014 15:02, schrieb Richard Eckart de Castilho: > On 17.04.2014, at 14:04, Peter Klügl wrote: > >> Hi, >> >> as I understand the implementation, an AE is sofa aware if it specifies >> input or output views in its capabilities. Let's say it only specif

Sofa-unaware AEs that create new views in an AAE

2014-04-17 Thread Peter Klügl
Hi, as I understand the implementation, an AE is sofa aware if it specifies input or output views in its capabilities. Let's say it only specifies an output view, so it's sofa aware. If it is part of an AAE with sofa mapping (one AAE sofa mapped to the default input view of the AE), then it get pa

[ANNOUNCE] Apache UIMA Ruta 2.2.0 released

2014-04-15 Thread Peter Klügl
fixes For a full list of the changes, please refer to Jira: http://uima.apache.org/d/ruta-2.2.0/issuesFixed/jira-report.html More information about UIMA Ruta can be found here: http://uima.apache.org/ruta.html - Peter Klügl, for the Apache UIMA development team -BEGIN PGP SIGNATURE

Re: New feeature in uima-ruta.

2014-04-07 Thread Peter Klügl
Hi, contributions are of course welcome. You can start a discussion on the developer list: d...@uima.apache.org Contributions are normally performed using Jira: https://issues.apache.org/jira/browse/uima You need to create an account, and then to create a new issue providing information about

Re: Using Apache UIMA Ruta from my own annotator

2014-03-18 Thread Peter Klügl
Am 18.03.2014 13:56, schrieb Peter Klügl: > Hi, > > my first guess is that you need to add the Ruta type system > (BasicTypeSystem, which imports InternalTypeSystem) to your analysis > engine or to your type system, depending how you run your pipeline or > create the CAS to be p

Re: Using Apache UIMA Ruta from my own annotator

2014-03-18 Thread Peter Klügl
Hi, my first guess is that you need to add the Ruta type system (BasicTypeSystem, which imports InternalTypeSystem) to your analysis engine or to your type system, depending how you run your pipeline or create the CAS to be processed. More comments below... Am 18.03.2014 13:37, schrieb James Bak

Re: UIMA Ruta installation problems

2014-02-24 Thread Peter Klügl
faster. Here's a link to the mailing lists: http://uima.apache.org/mail-lists.html Best, Peter Am 24.02.2014 18:24, schrieb Peter Klügl: Hi, Am 21.02.2014 09:17, schrieb Debbie Zhang: Hi, We finally have Eclipse upgraded to 4.3.1. Now I had no problem to install uimaj and uima-as plug-ins

Re: UIMA Ruta installation problems

2014-02-24 Thread Peter Klügl
I should fix this problem first before fixing the Ruta problem. Thanks! Debbie Sent from my iPhone On 20 Feb 2014, at 8:34 pm, Peter Klügl wrote: Am 20.02.2014 08:50, schrieb Debbie Zhang: Hi all, Due to some restriction at work, I have to install UIMA Ruta on Eclipse manually. Al

Re: UIMA Ruta Workbench picks up an incorrect descriptor path

2014-02-21 Thread Peter Klügl
rent trunk and will be part of the upcoming release. Best, Peter > Regards, > > Debbie > > -Original Message- > From: Peter Klügl [mailto:pklu...@uni-wuerzburg.de] > Sent: Wednesday, 19 February 2014 1:44 AM > To: user@uima.apache.org > Subject: Re: UIMA Ruta W

Re: UIMA Ruta installation problems

2014-02-20 Thread Peter Klügl
Am 20.02.2014 08:50, schrieb Debbie Zhang: > Hi all, > > > > Due to some restriction at work, I have to install UIMA Ruta on Eclipse > manually. Although I have put in all required jar files to the plugins and > features folders, it seems the plugins are not installed properly. I only First of

Re: UIMA Ruta Workbench picks up an incorrect descriptor path

2014-02-18 Thread Peter Klügl
Hi, this is probably caused by the absolute paths in the descriptor. Try to clean the project twice (Menu->Project->Clean) in order to regenerate the descriptors. In the next release, UIMA Ruta 2.2.0, this should never happen again. Best, Peter Am 18.02.2014 09:15, schrieb Debbie Zhang: > Hi a

Re: uima jcas get annotation type from string

2014-02-13 Thread Peter Klügl
maybe something like cas.getTypeSystem().getType("my.package.AnnotationName") Best, Peter Am 13.02.2014 14:03, schrieb hannes schantl: > Hi, > > Is there a way to get an annotation Type from the cas(or Jcas) from a > string. > For example, i am looking for something like that: > jcas.getCasType

Re: Ruta - Text Ruler - NullPointerException with the example project

2014-02-13 Thread Peter Klügl
Hi, the nasty thing I did was not to include the descriptors for the scripts in svn. I will add a comment in the documentation and will improve the TextRuler view to report the problem to the user. Best, Peter Am 13.02.2014 10:49, schrieb Peter Klügl: > Hi, > > Am 12.02.2014 23:57

Re: Ruta - Text Ruler - NullPointerException with the example project

2014-02-13 Thread Peter Klügl
Hi, Am 12.02.2014 23:57, schrieb Nicolas Hernandez: > Hi everyone, > > I'm testing the TextRuler framework to induce annotation rules. In > particular I follow the example in the documentation [1] which should works > on the example project present in the svn repository [2]. > > Unfortunately, whe

JCAS Annotations vs CAS Annotations - Performance

2014-01-15 Thread Peter Klügl
Hi, does anyone have some experience on the performance difference of CAS annotations and JCAS annotations in real world applications? I created a trivial testbench that indicates that CAS annotations are bit faster, but I not sure if that holds for real applications. Best, Peter

Re: next UIMA workshop?

2014-01-14 Thread Peter Klügl
ent a mail to the GATE user list to get some input from them. The > proposal draft is here: > https://github.com/jgrivolla/coling2014-nlp-framework-workshop/blob/master/proposal.md > > -- Jens > > On 19/12/13 13:29, Jens Grivolla wrote: >> On 19/12/13 13:08, Peter Klügl wro

Re: next UIMA workshop?

2013-12-19 Thread Peter Klügl
Am 19.12.2013 12:31, schrieb Jens Grivolla: > Ok, it's time to seriously get started on this. > > I guess we can start with the GSCL workshop description, and maybe > make it more inclusive for other frameworks (GATE, etc.) > > We need a couple of organizers (me, Renaud, ...?) and a potential PC >

Re: UIMA Ruta 2.1.0 Issues

2013-12-17 Thread Peter Klügl
Am 17.12.2013 18:14, schrieb Alexandre Patry: On 2013-12-17 12:10, Peter Klügl wrote: Am 17.12.2013 18:00, schrieb Alexandre Patry: On 2013-12-17 11:56, Peter Klügl wrote: Hi, some of the rules behave as expected. It's maybe a bit counterintuitive, but I do not see a way to improve

Re: UIMA Ruta 2.1.0 Issues

2013-12-17 Thread Peter Klügl
Hi, the problem with the rules throwing an exception is now fixed in the current trunk. Thanks for reporting it. Best, Peter Am 13.12.2013 16:37, schrieb Joerg Poecher: Hello, I would like to report some issues that occurred while testing the Ruta Workbench. There seems to be a

Re: UIMA Ruta 2.1.0 Issues

2013-12-17 Thread Peter Klügl
Am 17.12.2013 18:00, schrieb Alexandre Patry: > On 2013-12-17 11:56, Peter Klügl wrote: >> Hi, >> >> some of the rules behave as expected. It's maybe a bit counterintuitive, >> but I do not see a way to improve it. I will fix the rest in the next >> few days

Re: UIMA Ruta 2.1.0 Issues

2013-12-17 Thread Peter Klügl
herefore ALL matches on all annotations and also on the SPECIAL annotations until the end of the document. Then, there is no SPECIAL annotation left to match and the rule fails. May I use your examples in a junit test case? Best, Peter Am 17.12.2013 17:45, schrieb Peter Klügl: > Thanks, I

Re: UIMA Ruta 2.1.0 Issues

2013-12-17 Thread Peter Klügl
Thanks, I will take a look at it ASAP. Best, Peter Am 13.12.2013 16:37, schrieb Joerg Poecher: > Hello, > > > > I would like to report some issues that occurred while testing the Ruta > Workbench. > > > > There seems to be a problem with certain composed disjunctive rules in > combination wi

Re: Problem writing ruta extensions

2013-12-07 Thread Peter Klügl
It was a bug in the grammar. It's fixed now in the trunk. Thanks for reporting this. Best, Peter Am 05.12.2013 14:43, schrieb Sebastian: Peter Klügl writes: Hi, Am 04.12.2013 18:33, schrieb Sebastian: Hi, I'm highly interested in ruta, and its potential applications in

Re: Problem writing ruta extensions

2013-12-07 Thread Peter Klügl
Am 05.12.2013 16:44, schrieb Alexandre Patry: On 2013-12-04 12:33, Sebastian wrote: Hi, I'm highly interested in ruta, and its potential applications in industrial applications. Right know I'm trying to create a simple toy condition extension that is simply a case insensitive INLIST condition

Re: Macros in Ruta? - How to make long scripts short?

2013-12-06 Thread Peter Klügl
Hi, Am 06.12.2013 16:55, schrieb Alexandre Patry: On 2013-12-06 10:46, Richard Eckart de Castilho wrote: Hi, assuming I have a Ruta script with recurring statements of the type PartOfSpeech{FEATURE("value", "N") Is it possible to define some kind of macro to replace this long statement wit

Re: Problem writing ruta extensions

2013-12-06 Thread Peter Klügl
Sorry, I didn't make it today. I'll try to take a look at it tomorrow. Best, Peter Am 05.12.2013 15:00, schrieb Peter Klügl: Am 05.12.2013 14:43, schrieb Sebastian: Peter Klügl writes: Hi, Am 04.12.2013 18:33, schrieb Sebastian: Hi, I'm highly interested in ruta, an

Re: Problem writing ruta extensions

2013-12-05 Thread Peter Klügl
Am 05.12.2013 14:43, schrieb Sebastian: > Peter Klügl writes: > >> Hi, >> >> Am 04.12.2013 18:33, schrieb Sebastian: >>> Hi, >>> >>> I'm highly interested in ruta, and its potential applications in > industrial >>>

Re: Problem writing ruta extensions

2013-12-05 Thread Peter Klügl
Sorry, I read over the mention that it is only a toy extension... so maybe ignore the advice with the actions ;-) Can you check whether there is a Type in the typesystem with the short name "MonthsList"? Best, Peter Am 05.12.2013 09:58, schrieb Peter Klügl: > Hi, > >

Re: Problem writing ruta extensions

2013-12-05 Thread Peter Klügl
Hi, Am 04.12.2013 18:33, schrieb Sebastian: > Hi, > > I'm highly interested in ruta, and its potential applications in industrial > applications. Right know I'm trying to create a simple toy condition > extension that is simply a case insensitive INLIST condition. It is > completely based on the I

Re: Annotation Editor will not accept TypeSystem importing Cleartk Type System

2013-11-28 Thread Peter Klügl
On 27.11.2013 21:39, Matthias Grabmair wrote: > Hi all, > > I am relatively new to UIMA and am involved in a project where an annotated > corpus needs to be developed. > My TypeSystem.xml imports org.cleartk.TypeSystem, which > works fine for TypeSystem editing purposes. > However, I cannot edi

Re: XmiCasSerializer error in UIMA-AS

2013-10-30 Thread Peter Klügl
known modifications that cause problems? Peter > Eddie > > > > > > On Tue, Oct 29, 2013 at 9:39 AM, Peter Klügl wrote: > >> On 28.10.2013 13:47, Eddie Epstein wrote: >>> Assuming you would rather not share the CAS files, what I'd be looking >> for

Re: XmiCasSerializer error in UIMA-AS

2013-10-29 Thread Peter Klügl
On 28.10.2013 13:47, Eddie Epstein wrote: > Assuming you would rather not share the CAS files, what I'd be looking for > is the xmi:id values changing between the before and after files. There is > some code in ruta that replaces CASes with serialization from files which > could be the cause of thi

Re: next UIMA workshop?

2013-10-22 Thread Peter Klügl
I also think that it is a good idea if we can expect enough submissions. However, I will not be able to organize it and cannot promise to submit something. Peter On 21.10.2013 11:44, Jens Grivolla wrote: > Hi, at GSCL 2013 we talked a bit about options for the next UIMA > workshop. How about try

UIMA Ruta tutorial slides

2013-10-10 Thread Peter Klügl
Hi, the slides of the GSCL tutorial part II about UIMA Ruta are now available online: http://uima.apache.org/downloads/gscl2013/2013-GSCL-Ruta.pdf Best, Peter

Re: In need of good tutorials

2013-09-26 Thread Peter Klügl
Sorry for that mail. It wasn't intended to be sent to the user list. Peter On 26.09.2013 10:52, Peter Klügl wrote: > Hallo, > > ich würde das 1-2 Wochen online lassen, aber dann mindesten ein paar > Ruta Projekte rausnehmen. Ich will das nicht so lange online lassen, vor &

Re: In need of good tutorials

2013-09-26 Thread Peter Klügl
Hallo, ich würde das 1-2 Wochen online lassen, aber dann mindesten ein paar Ruta Projekte rausnehmen. Ich will das nicht so lange online lassen, vor allem nicht ohne notice and license usw. Wär das OK für dich? Gruß, Peter On 26.09.2013 07:17, Richard Eckart de Castilho wrote: > We put the mat

Re: Example ruta Eclipse project?

2013-09-22 Thread Peter Klügl
Hi, Am 22.09.2013 15:43, schrieb Anton Hughes: Hi I am trying to learn Uima Ruta, and while the documentation is very good, it would be very helpful if I had an example eclipse project. Does anyone have a sample project they can share with me? The trunk and the source release of UIMA Ruta co

[ANNOUNCE] Apache UIMA Ruta 2.1.0 released

2013-09-20 Thread Peter Klügl
Workbench is already available. More information about UIMA Ruta can be found here: http://uima.apache.org/ruta.html - Peter Klügl, for the Apache UIMA development team signature.asc Description: OpenPGP digital signature

Re: Ruta 2.0.1

2013-09-16 Thread Peter Klügl
uleElement.java:73) > at org.apache.uima.ruta.rule.RutaRule.apply(RutaRule.java:47) > at org.apache.uima.ruta.rule.RutaRule.apply(RutaRule.java:40) > at org.apache.uima.ruta.rule.RutaRule.apply(RutaRule.java:29) > at org.apache.uima.ruta.RutaScriptBlock.apply(Ruta

Re: Ruta 2.0.1

2013-09-16 Thread Peter Klügl
Hi, the wildcard # has some bugs in ruta 2.0.1, which have been fixed in ruta-2.1.0. It's hard to determine what the problem is. I created a small test set in ruta-2.1.0 and tested the rule. No problems observed. You might want to switch to ruta-2.1.0. There is a release candidate with an update

<    1   2   3   4   5   6   >