The output of Rasa NLU
In order to properly debug Rasa NLU, developers should understand its output format.
The output format of Rasa NLU's inference is as follows:
{
"text": "show me chinese restaurants",
"intent": "restaurant_search",
"entities": [
{
"start": 8,
"end": 15,
"value": "chinese",
"entity": "cuisine",
"extractor": "CRFEntityExtractor",
"confidence": 0.854,
"processors": []
}
]
}
It contains three main parts: text, intent, and entities. The text field is the raw text...