-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple Intents Detection #623
Comments
Hey @harshitazilen , Cheers |
Thanks @adrienball for your response. I am trying to implement a follow up intent feature. where Intent2 & Intent3 are similar but For a user input: If previously bot detected Intent1 , then it must detect Intent 2. I believe above can not be achieved by merging intents. Probably waiting for API may be a good option. I will make separate NLU engine specially for Intent2 (followup intents). |
Hello 👋 , I'm also very interested in an API to have an intents list. Sometimes, two intents can be close (~5% probability score difference) and that would be great to have the power to handle ambiguous situations like that. We could just set an ambiguity threshold and then compare the difference in probability score for the two top intents, for example. That would be great ! :) |
Thanks for the feedback, I'm adding this to our roadmap. |
@harshitazilen I wrote the following function to get multiple intents from the snips module.
Like a temporary workaround. |
@adrienball I was working on this feature because I needed multiple intent for one of my project and I can throw a pull request for this. Just wanted to clarify, if a list of intents should be returned with corresponding probabilities. Should the None intents be skipped, in return value? |
Hi, I am working on a contextual chatbot. I need to use intent based on current context of user.
For ex: User's input is relevant with Intent1 and Intent2. Based on current context I would like to respond user either for Intent1 or Intent2.
Currently Snips detects only single intent with the highest probability.
Is there any way to see top most intents ?
The text was updated successfully, but these errors were encountered: