Hi,
I have created a separate yml file (next to my training data) for an entity lookup table. I have added some comments within the examples in the following way:
version: "2.0"
nlu:
- lookup: athlete
examples: |
#################### Swimming
- Joe
#################### Tennis
- George
#################### Soccer
- Peter
When I am checking this file with a yaml checker, it looks perfectly ok, but Rasa gives warnings during training and during startup as well: â/usr/local/lib/python3.8/dist-packages/rasa/shared/utils/io.py:97: UserWarning: Issue found while processing â./data/entity.ymlâ: The item âathleteâ contains an example that doesnât start with a â-â symbol: #################### Swimmingâ Although it looks like, that the entity recognition works fine, I would like to eliminate these warnings. I would like to ask some help, or suggestion how write these comments correctly!
Thanks