qnamaker

How to train my QnA Bot while using it?

本小妞迷上赌 提交于 2019-12-02 06:48:38
问题 I made a QnA bot using bot-framework SDK3 and QnAmaker service. As I know, we can train our knowledge base. But I don't know how to train it while using my QnA bot in other channels like teams. I think I can let user judge whether the bot's answer has solved the problem. So I make the conversation like below. User: Ask a question bot: give a answer bot: does it solve your problem? yes or no? user: yes/no At this time, how could I let my knowledge base know it and master it? Then next time my

How to train my QnA Bot while using it?

删除回忆录丶 提交于 2019-12-02 06:46:33
I made a QnA bot using bot-framework SDK3 and QnAmaker service. As I know, we can train our knowledge base . But I don't know how to train it while using my QnA bot in other channels like teams. I think I can let user judge whether the bot's answer has solved the problem. So I make the conversation like below. User: Ask a question bot: give a answer bot: does it solve your problem? yes or no? user: yes/no At this time, how could I let my knowledge base know it and master it? Then next time my bot may give a correct answer. Dialog-based training like you described above is not currently

Azure BOT Framework, Integrate QnA Maker with LUIS

▼魔方 西西 提交于 2019-12-02 05:01:55
问题 I am searching for documentation on the integration of QnA Maker API with LUIS in Azure BOT Framework . But after a lot of research, I couldn't find any such document. If anyone came across the same scenario, please post your efforts. I am using C# as scripting here. 回答1: There are several general ways to do it, but it's ultimately up to you as the Bot developer to decide how to structure it. A general overview is provided in the docs here, but if you want a more code oriented sample, this

Azure BOT Framework, Integrate QnA Maker with LUIS

时光毁灭记忆、已成空白 提交于 2019-12-02 01:19:15
I am searching for documentation on the integration of QnA Maker API with LUIS in Azure BOT Framework . But after a lot of research, I couldn't find any such document. If anyone came across the same scenario, please post your efforts. I am using C# as scripting here. There are several general ways to do it, but it's ultimately up to you as the Bot developer to decide how to structure it. A general overview is provided in the docs here , but if you want a more code oriented sample, this blog post should help you - Dialog management with QnA, Luis, and Scorables In the sample, the LuisDialog

How to implement cards in a QnA question which has follow up prompts and uses them in the cards

≡放荡痞女 提交于 2019-12-01 12:01:44
I've set up a simple QnA bot which is linked to a QnA service. Within the QnA service I have set up some questions which have follow up prompts(Dependents) e.g. how do I get to a campus, via bus, train etc. see image in link , within the Qna maker testing function you can just click a button called enable mutli-turn which provides functional buttons to inform you of what can/should be asked next via the dependents of the answer See image in link . However when used within a channel/in the emulator nothing of the like appears see image , which is a bit odd. And obviously I want to implement

How to implement cards in a QnA question which has follow up prompts and uses them in the cards

折月煮酒 提交于 2019-12-01 11:29:42
问题 I've set up a simple QnA bot which is linked to a QnA service. Within the QnA service I have set up some questions which have follow up prompts(Dependents) e.g. how do I get to a campus, via bus, train etc. see image in link, within the Qna maker testing function you can just click a button called enable mutli-turn which provides functional buttons to inform you of what can/should be asked next via the dependents of the answer See image in link. However when used within a channel/in the

Dispatch CLI not passing Entities from Luis App

删除回忆录丶 提交于 2019-11-29 17:33:01
When generating a Dispatch model using the CLI, it doesn't pass the Entities from the Luis app in reference. This drastically affects the accuracy of the dispatch app. For example, for the utterance "My [iPhone] isn't working", iPhone is attached to an entity list name CellPhoneType. There are three items in the list iPhone, Samsung, Smartphone. In the bot emulator, using the Dispatch, if I write "my iPhone isn't working", the dispatch model passes it to Luis, as it should. However, if I write "my smartphone isn't working", the dispatch tool sends it over to QnA Maker. I checked the model, and

Dispatch CLI not passing Entities from Luis App

放肆的年华 提交于 2019-11-27 08:54:19
问题 When generating a Dispatch model using the CLI, it doesn't pass the Entities from the Luis app in reference. This drastically affects the accuracy of the dispatch app. For example, for the utterance "My [iPhone] isn't working", iPhone is attached to an entity list name CellPhoneType. There are three items in the list iPhone, Samsung, Smartphone. In the bot emulator, using the Dispatch, if I write "my iPhone isn't working", the dispatch model passes it to Luis, as it should. However, if I