Created
January 26, 2018 23:00
-
-
Save mil06/c66e16e884bf806ee6f7bbb013179f77 to your computer and use it in GitHub Desktop.
physician train entities flat v2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rasa_nlu_data": { | |
| "common_examples": [ | |
| { | |
| "text": "hey", | |
| "intent": "greet", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "howdy", | |
| "intent": "greet", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "hey there", | |
| "intent": "greet", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "hello", | |
| "intent": "greet", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "hi", | |
| "intent": "greet", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "yes", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "yep", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "yeah", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "bye", | |
| "intent": "goodbye", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "goodbye", | |
| "intent": "goodbye", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "good bye", | |
| "intent": "goodbye", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "stop", | |
| "intent": "goodbye", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "end", | |
| "intent": "goodbye", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "indeed", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "that's right", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "ok", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "great", | |
| "intent": "affirm", | |
| "entities": [] | |
| }, | |
| { | |
| "text": "HCP", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 0, | |
| "end": 3, | |
| "value": "HCP", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "HCPs", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 0, | |
| "end": 4, | |
| "value": "HCPs", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "HCP's", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 0, | |
| "end": 5, | |
| "value": "HCP's", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "hcp", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 0, | |
| "end": 3, | |
| "value": "hcp", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "hcps", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 0, | |
| "end": 4, | |
| "value": "hcps", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "for HCP", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 4, | |
| "end": 7, | |
| "value": "HCP", | |
| "entity": "physician" | |
| } | |
| ] | |
| }, | |
| { | |
| "text": "for hcp", | |
| "intent": "Physician", | |
| "entities": [ | |
| { | |
| "start": 4, | |
| "end": 7, | |
| "value": "hcp", | |
| "entity": "physician" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment