Sinhala entity classifications

UserWarning: Misaligned entity annotation in message ‘කමල්’ with intent ‘username’. Make sure the start and end values of entities in the training data match the token boundaries (e.g. entities don’t include trailing whitespaces or punctuation).Make sure the start and end values of entities in the training data match the token boundaries (e.g. entities don’t include trailing whitespaces or punctuation).

I am using Sinhala language and also I am using rasa open source .

This is my nlu part

{

```
"text": "කමල්",

"intent": "username",

"entities": [

  {

    "start": 1,

    "end": 8,

    "value": "කමල්",

    "entity": "uname"

  }

]

},

Hi @Dilshan, I’m not familiar with Sinhala, so I might not be able to help much, but that warning is usually thrown when you’ve annotated an entity incorrectly e.g. My username is [cbasg,](username) - in this case, the comma should not be annotated. Do you have any such punctuation marks inside your entities? What does your pipeline look like, and are you seeing this error when you train the bot? Does it refer specifically to this training example?