kchahid
(kamal chahid)
1
Hi all, i’m new in rasa and i can’t detect multiple intent
My pipeline for [Tokenizers]
Exemple if user input is Hello how are u ? → intent_1 = hello[greet] and intent_2 = how are u[askH]
any help ? and i want rasa return intent=greet+askH
I have read the doc and try it but nothing change
nbeuchat
(Nicolas Beuchat)
2
Hi @kchahid! Welcome
Did you add any example of the multi-intent in your NLU data?
You should at least have a few examples as:
## intent:greet+askH
- hey buddy how are you?
- hello what's up?
If I understood well how multi-intents work, the greet+askH
detection will be helped by the examples you have for greet
and askH
separately.
Hope that helps!
Nicolas
kchahid
(kamal chahid)
3
Ok got it thanks @nbeuchat