Are entity-only training examples still supported? If so, how are they formatted?

Hi @plwrenn You can use the json data format to accomplish this. Here is an example that should work -

{
  "rasa_nlu_data": {
    ...
    "common_examples": [
      {
        "text": "hey",
        "intent": "greet", 
        "entities": []
      }, 
      {
        "text": "I am looking for asian fusion food",
        "entities": [
          {
            "start": 17,
            "end": 29,
            "value": "asian fusion",
            "entity": "cuisine"
          }
        ]
      },
      .... 

Let me know if you have any further queries.

1 Like