Details
-
Question
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1.0ruta
-
None
Description
Hello there all,
I am new to Ruta and trying to find my way around,
I have created some scripts that do some annotating from csv files and trying to construct some more complex annotation by combining 2 Annotations to create a new one that has Annotation Type Features.
My script:
PACKAGE com.uima.RutaTesting;
SCRIPT com.uima.RutaTesting.Disctionary_Annotators;
SCRIPT com.uima.RutaTesting.SpeedDiscription;
DECLARE Annotation C (SpeedDiscriptor F1, Target F2);
Document{->CALL(Disctionary_Annotators)};
Document{->CALL(SpeedDiscription)};
SpeedDiscriptor Target {->
CREATE (C, "F1"=SpeedDiscriptor, "F2"=Target),
SHIFT(SpeedDiscriptor,1,2)};
When I try to annotate the text i get the error : Error parsing XCAS or XMI-CAS from source <unknown> at line 1, column 75407: unknown type: com.uima.RutaTesting.Gather_Testing.EmplRelation.
I cannot understand why this happens..Any ideas?