I keep getting an error for training examples that contain a punctuation. For instance, please see the following training examples with my annotation and the errors thrown further below -
- Budget around [1200](budgetLowerLimit)-[2000](budgetUpperLimit) if that's even a possibility anymore ?
- I'm looking for somewhere around [3800$](budgetUpperLimit)
- Budget is [2100](budgetLowerLimit)-[2500](budgetUpperLimit)
Here are the errors I got -
/build/lib/python3.6/site-packages/rasa/nlu/extractors/crf_entity_extractor.py:515: UserWarning: Misaligned entity annotation for '1200-2000' in sentence 'Budget around 1200-2000 if that's even a possibility anymore ?' with intent 'state_preferences'. Make sure the start and end values of the annotated training examples end at token boundaries (e.g. don't include trailing whitespaces or punctuation).
f"Misaligned entity annotation for '{collected_text}' "
/build/lib/python3.6/site-packages/rasa/nlu/extractors/crf_entity_extractor.py:515: UserWarning: Misaligned entity annotation for 'around 3800' in sentence 'I'm looking for somewhere around 3800$' with intent 'state_preferences'. Make sure the start and end values of the annotated training examples end at token boundaries (e.g. don't include trailing whitespaces or punctuation).
f"Misaligned entity annotation for '{collected_text}' "
/build/lib/python3.6/site-packages/rasa/nlu/extractors/crf_entity_extractor.py:515: UserWarning: Misaligned entity annotation for '2100-2500' in sentence 'Budget is 2100-2500' with intent 'state_preferences'. Make sure the start and end values of the annotated training examples end at token boundaries (e.g. don't include trailing whitespaces or punctuation).
f"Misaligned entity annotation for '{collected_text}' "
In the first and third example, I also tried escaping the β-β character (as per markdown syntax) but I keep getting the same error when training the model.
Can anyone help how to avoid this and if this will cause a serious problem in my training that Iβm not foreseeing today? Thanks in advance!