I want to make every user query in lowercase. I am using current default rasa pipeline in config file.
I do not want to change the pipeline setting. So is there any solution apart from creating my custom component.?
I want to make every user query in lowercase. I am using current default rasa pipeline in config file.
I do not want to change the pipeline setting. So is there any solution apart from creating my custom component.?
Hi @mangeshi,
Do you mean, no case sensitivity. The bot has to take morning, MORNING and Morning as same? If so, you can add the following on top of your config file:
pipeline:
- name: SpacyNLP
case_sensitive: False
Turns out WhitespaceTokenizer has a property to handle this , so i think no need to change the tokenizer to spacyNLP
But thanks anyway. Appreciated.