You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What would that feature address
A user requested a way to annotate text. It is used for NLP applications.
Description of the ideal solution
Related discussion: The specific problem is to annotate training data for a Rasa chatbot. The syntax follows this pattern: [<entity-text>]{"entity": "<entity name>", "role": "<role name>", "group": "<group name>", "value": "<entity synonym>"}.
Example:
What's the balance on my [credit card account]{"entity":"account","value":"credit"}
The idea might be to add something like a selector that allows the user to mark characters and invoke a function on them (like opening up a form that contains information about the marked characters). In the example above, it could work like this:
The GUI visualizes a data frame containing sentences
The user selects "credit card account" in an example sentence
The GUI opens a small window with a form to add the values for "entity", "role", "group", and "value"
The user fills in the values and clicks a "Save" button inside that small window.
The GUI calls a function that handles this dataset (e.g., replaces the sentence in a modified data frame with the annotated sentence)
What would that feature address
A user requested a way to annotate text. It is used for NLP applications.
Description of the ideal solution
Related discussion: The specific problem is to annotate training data for a Rasa chatbot. The syntax follows this pattern:
[<entity-text>]{"entity": "<entity name>", "role": "<role name>", "group": "<group name>", "value": "<entity synonym>"}
.Example:
What's the balance on my
[credit card account]{"entity":"account","value":"credit"}
The idea might be to add something like a selector that allows the user to mark characters and invoke a function on them (like opening up a form that contains information about the marked characters). In the example above, it could work like this:
From this use case, this library could work:
https://github.com/recogito/recogito-js
It can be tested here:
https://recogito.github.io/recogito-js/
Acceptance Criteria
The text was updated successfully, but these errors were encountered: