admin管理员组文章数量:1122832
Problem Description
I am designing an algorithm that inputs an string, looks in the Q&A dataset, and brings back the closest Q&A to our user query.
However, when the user sends a multiple-intent query like:
"Tell me about price, warranty, and delivery time."
The algorithm only returns a single Q&A, even though the query contains multiple intents.
Objective
To handle such cases, I need a way to split a multiple-intent query into multiple single-intent queries. For example, the query above should be split into:
- "Tell me about price"
- "Tell me about warranty"
- "Tell me about delivery time"
This will allow the algorithm to process each intent individually and return the closest Q&A for each.
本文标签: nlpA Multiple Intent Query to Multiple Single Intent QueryStack Overflow
版权声明:本文标题:nlp - A Multiple Intent Query to Multiple Single Intent Query - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736304912a1932402.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论