Hi,
How to train same intent with multiple entities having same length of numbers? for example customer Id and card number
intent: user_details
How to train above intent?
Hi,
How to train same intent with multiple entities having same length of numbers? for example customer Id and card number
intent: user_details
How to train above intent?
You could annotate those numbers as entities and use regular expression features (Training Data Format - sorry I thought the link contained the right text) to aid in their extraction
Thank you for your reply. If I annotate those numbers as entities like customer id and card number. Will rasa recognize as separate entities because both have same number length?
I’d use a regex to support the entity extraction and I wouldn’t use a specialized intent, but rather a generic inform
intent
@Tobias_Wochinger Thank you, I will try it.