Skip to content

Instantly share code, notes, and snippets.

@wrathagom
Last active July 19, 2017 15:53
Show Gist options
  • Save wrathagom/a0e1128a4dfbafe12a3150cc46127036 to your computer and use it in GitHub Desktop.
Save wrathagom/a0e1128a4dfbafe12a3150cc46127036 to your computer and use it in GitHub Desktop.
Rasa Training Set for `What time is it?` question
{
"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": "good morning",
"intent": "greet",
"entities": []
},
{
"text": "good evening",
"intent": "greet",
"entities": []
},
{
"text": "dear sir",
"intent": "greet",
"entities": []
},
{
"text": "yes",
"intent": "affirm",
"entities": []
},
{
"text": "yep",
"intent": "affirm",
"entities": []
},
{
"text": "yeah",
"intent": "affirm",
"entities": []
},
{
"text": "indeed",
"intent": "affirm",
"entities": []
},
{
"text": "that's right",
"intent": "affirm",
"entities": []
},
{
"text": "ok",
"intent": "affirm",
"entities": []
},
{
"text": "great",
"intent": "affirm",
"entities": []
},
{
"text": "right, thank you",
"intent": "affirm",
"entities": []
},
{
"text": "correct",
"intent": "affirm",
"entities": []
},
{
"text": "great choice",
"intent": "affirm",
"entities": []
},
{
"text": "sounds really good",
"intent": "affirm",
"entities": []
},
{
"text": "i'm looking for a place to eat",
"intent": "restaurant_search",
"entities": []
},
{
"text": "I want to grab lunch",
"intent": "restaurant_search",
"entities": []
},
{
"text": "I am searching for a dinner spot",
"intent": "restaurant_search",
"entities": []
},
{
"text": "i'm looking for a place in the north of town",
"intent": "restaurant_search",
"entities": [
{
"start": 31,
"end": 36,
"value": "north",
"entity": "location"
}
]
},
{
"text": "show me chinese restaurants",
"intent": "restaurant_search",
"entities": [
{
"start": 8,
"end": 15,
"value": "chinese",
"entity": "cuisine"
}
]
},
{
"text": "show me chines restaurants",
"intent": "restaurant_search",
"entities": [
{
"start": 8,
"end": 14,
"value": "chinese",
"entity": "cuisine"
}
]
},
{
"text": "show me a mexican place in the centre",
"intent": "restaurant_search",
"entities": [
{
"start": 31,
"end": 37,
"value": "centre",
"entity": "location"
},
{
"start": 10,
"end": 17,
"value": "mexican",
"entity": "cuisine"
}
]
},
{
"text": "i am looking for an indian spot called olaolaolaolaolaola",
"intent": "restaurant_search",
"entities": [
{
"start": 20,
"end": 26,
"value": "indian",
"entity": "cuisine"
}
]
},
{
"text": "search for restaurants",
"intent": "restaurant_search",
"entities": []
},
{
"text": "anywhere in the west",
"intent": "restaurant_search",
"entities": [
{
"start": 16,
"end": 20,
"value": "west",
"entity": "location"
}
]
},
{
"text": "I am looking for asian fusion food",
"intent": "restaurant_search",
"entities": [
{
"start": 17,
"end": 29,
"value": "asian fusion",
"entity": "cuisine"
}
]
},
{
"text": "I am looking for mexican indian fusion",
"intent": "restaurant_search",
"entities": [
{
"start": 17,
"end": 38,
"value": "mexican indian fusion",
"entity": "cuisine"
}
]
},
{
"text": "central indian restaurant",
"intent": "restaurant_search",
"entities": [
{
"start": 0,
"end": 7,
"value": "central",
"entity": "location"
},
{
"start": 8,
"end": 14,
"value": "indian",
"entity": "cuisine"
}
]
},
{
"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": "farewell",
"intent": "goodbye",
"entities": []
},
{
"text": "Bye bye",
"intent": "goodbye",
"entities": []
},
{
"text": "have a good one",
"intent": "goodbye",
"entities": []
},
{
"text": "What time is it?",
"intent": "get_time",
"entities": []
},
{
"text": "What's the time?",
"intent": "get_time",
"entities": []
},
{
"text": "Can you tell me the time?",
"intent": "get_time",
"entities": []
},
{
"text": "Tell me the time.",
"intent": "get_time",
"entities": []
},
{
"text": "What time is it in London?",
"intent": "get_time",
"entities": [
{
"start": 19,
"end": 25,
"value": "London",
"entity": "location"
}
]
},
{
"text": "What's the time in Paris?",
"intent": "get_time",
"entities": [
{
"start": 19,
"end": 24,
"value": "Paris",
"entity": "location"
}
]
},
{
"text": "Can you tell me the time in New York?",
"intent": "get_time",
"entities": [
{
"start": 28,
"end": 36,
"value": "New York",
"entity": "location"
}
]
},
{
"text": "tell me the time in San Francisco.",
"intent": "get_time",
"entities": [
{
"start": 20,
"end": 33,
"value": "San Francisco",
"entity": "location"
}
]
},
{
"text": "What time is it in Dubai?",
"intent": "get_time",
"entities": [
{
"start": 19,
"end": 24,
"value": "Dubai",
"entity": "location"
}
]
},
{
"text": "tell me the time in LA.",
"intent": "get_time",
"entities": [
{
"start": 20,
"end": 22,
"value": "LA",
"entity": "location"
}
]
},
{
"text": "What's the time in Chicago?",
"intent": "get_time",
"entities": [
{
"start": 19,
"end": 26,
"value": "Chicago",
"entity": "location"
}
]
},
{
"text": "Can you tell me the time in Berlin?",
"intent": "get_time",
"entities": [
{
"start": 28,
"end": 34,
"value": "Berlin",
"entity": "location"
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment