Getting error while training json data

Hi Prasanth,

Your json file format is wrong, your {} arrangement has a missing pair or extra pair here and there.

I’d recommend you using the md format of writing your nlu.md/data.json files. if you need to convert md file to json, you can use the following method in terminal

usage: rasa data convert nlu [-h] [-v] [-vv] [–quiet] --data DATA --out OUT [-l LANGUAGE] -f {json,md}

I formated your contents in this md file help.md (248 Bytes)

for Json format: { “rasa_nlu_data”: { “common_examples”: [ { “intent”: “sendPin”, “entities”: [ { “start”: 5, “end”: 16, “value”: “fgrekjbgjgr”, “entity”: “pinname” }, { “start”: 30, “end”: 34, “value”: “mani”, “entity”: “person” } ], “text”: “send fgrekjbgjgr pin board to mani” }, { “intent”: “sendPin”, “entities”: [ { “start”: 8, “end”: 18, “value”: “svfkjgvnrb”, “entity”: “pinname” }, { “start”: 31, “end”: 35, “value”: “gopi”, “entity”: “person” } ], “text”: “forward svfkjgvnrb pinboard to gopi” }, { “intent”: “sendPin”, “entities”: [ { “start”: 6, “end”: 16, “value”: “refkregrek”, “entity”: “pinname” }, { “start”: 24, “end”: 30, “value”: “mahesh”, “entity”: “person” } ], “text”: “share refkregrek pin to mahesh” }, { “intent”: “sendPin”, “entities”: [ { “start”: 9, “end”: 14, “value”: “rewfr”, “entity”: “pinname” }, { “start”: 28, “end”: 34, “value”: “ganesh”, “entity”: “person” } ], “text”: “send the rewfr pin board to ganesh” } ], “regex_features”: , “lookup_tables”: , “entity_synonyms”: } }