You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Philipp Daumke (JIRA)" <de...@uima.apache.org> on 2012/07/30 22:37:35 UTC

[jira] [Created] (UIMA-2447) MARKFAST on StringList

Philipp Daumke created UIMA-2447:
------------------------------------

             Summary: MARKFAST on StringList
                 Key: UIMA-2447
                 URL: https://issues.apache.org/jira/browse/UIMA-2447
             Project: UIMA
          Issue Type: Bug
            Reporter: Philipp Daumke
            Priority: Minor


Hi Jens,

is there a particular reason why MARKFAST ist not allowed on STRINGLISTs?
eg. the following code doesn't work:

STRINGLIST myList = {"Peter", "Philipp", "Kai"}; 
DECLARE Name;
Document{->MARKFAST(Name, myList)};

Best regards
Philipp



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (UIMA-2447) MARKFAST on StringList

Posted by "Philipp Daumke (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Philipp Daumke updated UIMA-2447:
---------------------------------

    Component/s: TextMarker
    
> MARKFAST on StringList
> ----------------------
>
>                 Key: UIMA-2447
>                 URL: https://issues.apache.org/jira/browse/UIMA-2447
>             Project: UIMA
>          Issue Type: Bug
>          Components: TextMarker
>            Reporter: Philipp Daumke
>            Priority: Minor
>
> Hi Jens,
> is there a particular reason why MARKFAST ist not allowed on STRINGLISTs?
> eg. the following code doesn't work:
> STRINGLIST myList = {"Peter", "Philipp", "Kai"}; 
> DECLARE Name;
> Document{->MARKFAST(Name, myList)};
> Best regards
> Philipp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (UIMA-2447) MARKFAST on StringList

Posted by "Peter Klügl (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2447?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426546#comment-13426546 ] 

Peter Klügl commented on UIMA-2447:
-----------------------------------

STRINGLIST and WORDLIST are two different concepts in TextMarker, the first being a normal list of string values and the second being an external resource/dictionary. For matching on string lists, the condition INLIST would normally be applied. However, this condition only performs a candidate classification and not a match on the document. I can add the functionality to use string lists in the MARKFAST actions, but a trie structure needs to be generated each time the action is applied since the list is variable and its content can change.
                
> MARKFAST on StringList
> ----------------------
>
>                 Key: UIMA-2447
>                 URL: https://issues.apache.org/jira/browse/UIMA-2447
>             Project: UIMA
>          Issue Type: Bug
>          Components: TextMarker
>            Reporter: Philipp Daumke
>            Assignee: Peter Klügl
>            Priority: Minor
>
> Hi Jens,
> is there a particular reason why MARKFAST ist not allowed on STRINGLISTs?
> eg. the following code doesn't work:
> STRINGLIST myList = {"Peter", "Philipp", "Kai"}; 
> DECLARE Name;
> Document{->MARKFAST(Name, myList)};
> Best regards
> Philipp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Assigned] (UIMA-2447) MARKFAST on StringList

Posted by "Peter Klügl (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peter Klügl reassigned UIMA-2447:
---------------------------------

    Assignee: Peter Klügl
    
> MARKFAST on StringList
> ----------------------
>
>                 Key: UIMA-2447
>                 URL: https://issues.apache.org/jira/browse/UIMA-2447
>             Project: UIMA
>          Issue Type: Bug
>          Components: TextMarker
>            Reporter: Philipp Daumke
>            Assignee: Peter Klügl
>            Priority: Minor
>
> Hi Jens,
> is there a particular reason why MARKFAST ist not allowed on STRINGLISTs?
> eg. the following code doesn't work:
> STRINGLIST myList = {"Peter", "Philipp", "Kai"}; 
> DECLARE Name;
> Document{->MARKFAST(Name, myList)};
> Best regards
> Philipp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Resolved] (UIMA-2447) MARKFAST on StringList

Posted by "Peter Klügl (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peter Klügl resolved UIMA-2447.
-------------------------------

    Resolution: Fixed

A string list can now be used instead of a word list.

                
> MARKFAST on StringList
> ----------------------
>
>                 Key: UIMA-2447
>                 URL: https://issues.apache.org/jira/browse/UIMA-2447
>             Project: UIMA
>          Issue Type: Bug
>          Components: TextMarker
>            Reporter: Philipp Daumke
>            Assignee: Peter Klügl
>            Priority: Minor
>
> Hi Jens,
> is there a particular reason why MARKFAST ist not allowed on STRINGLISTs?
> eg. the following code doesn't work:
> STRINGLIST myList = {"Peter", "Philipp", "Kai"}; 
> DECLARE Name;
> Document{->MARKFAST(Name, myList)};
> Best regards
> Philipp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira