Closed alvipranandha closed 5 years ago
looks like you may have some empty training examples. On instance['rasa_nlu_data']['common_examples'][1427]['text']
-- that should help you find it
Thank you @akelad for your information, now I'm trying to cleaning some data that had null values and just opened rasa.py in a rasa_nlu library and found this:
def _rasa_nlu_data_schema(): training_example_schema = { "type": "object", "properties": { "text": {"type": "string", "minLength": 1}, "intent": {"type": "string"}, "entities": { "type": "array", "items": { "type": "object", "properties": { "start": {"type": "number"}, "end": {"type": "number"}, "value": {"type": "string"}, "entity": {"type": "string"} }, "required": ["start", "end", "entity"] } } }, "required": ["text"] }
and from one of the functions above, I knew that minimum length is one. So that's why I can't running a model.