Search code examples
eclipseuimaruta

Dictionary in UIMA RUTA in Eclipse


I am new to UIMA Ruta and Eclipse. Maybe some of you dealt with making an annotation. Please, tell me what the word "dictionary" means in such a context. Thanks in advance!


Solution

  • In the context of UIMA Ruta, a dictionary is nothing else than a word list: an external resource used to quickly annotate text items declared in the named resource. Here is an example:

    WORDLIST FirstNameList = 'FirstNames.txt';
    DECLARE FirstName;
    Document{-> MARKFAST(FirstName, FirstNameList)};
    

    For more information, please refer to the documentation.