Skip to content

Commit 025ddd4

Browse files
committed
edits
1 parent 1ef323b commit 025ddd4

8 files changed

+20
-13
lines changed

articles/cognitive-services/QnAMaker/Quickstarts/add-question-metadata-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Once metadata is added to a QnA set, the client application can:
3030

3131
## Prerequisites
3232

33-
* Complete the [previous quickstart](./quickstarts/create-publish-knowledge-base.md)
33+
* Complete the [previous quickstart](./create-publish-knowledge-base.md)
3434

3535
## Sign in to the QnA Maker portal
3636

articles/cognitive-services/QnAMaker/Quickstarts/batch-testing.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: qna-maker
1010
ms.topic: quickstart
11-
ms.date: 12/19/2019
11+
ms.date: 02/08/2020
1212
ms.author: diberry
1313
---
1414

@@ -19,7 +19,7 @@ Use the QnA Maker batch testing tool to test the knowledge bases in your QnA Mak
1919
## Prerequisites
2020

2121
* Azure subscription - [create one for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F)
22-
* Either [create a QnA Maker service](create-publish-knowledge-base.md#create-a-new-qna-maker-knowledge-base) or use an existing service, which uses the English language for the sample doc used in this quickstart.
22+
* Either [create a QnA Maker service](create-publish-knowledge-base.md#create-a-new-qna-maker-knowledge-base) or use an existing service, which uses the English language.
2323
* Download the [multi-turn sample `.docx` file](https://github.com/Azure-Samples/cognitive-services-sample-data-files/blob/master/qna-maker/data-source-formats/multi-turn.docx)
2424
* Download the [batch testing tool](https://aka.ms/qnamakerbatchtestingtool), extract the executable file from the `.zip` file.
2525

@@ -36,9 +36,16 @@ Use the QnA Maker batch testing tool to test the knowledge bases in your QnA Mak
3636
* Azure QnA Service Name
3737
* Language - the English language
3838
1. Enter the name `Multi-turn batch test quickstart` as the name of your knowledge base.
39-
1. In **Step 4**, check **Enable multi-turn extraction from URLs, .pdf or .docx files**.
40-
1. Enter the **Default answer text** of `Quickstart - can't find answer`. In a production knowledge base, this information should be more instructive to the user but for this quickstart, a simple response works.
41-
1. Still in **Step 4**, select **+ Add file** then select the downloaded `.docx` file listing in the prerequisites.
39+
40+
1. In **Step 4**, configure the settings with the following table:
41+
42+
|Setting|Value|
43+
|--|--|
44+
|**Enable multi-turn extraction from URLs, .pdf or .docx files.**|Checked|
45+
|**Default answer text**| `Batch test - default answer not found.`|
46+
|**+ Add File**|Select the downloaded `.docx` file listing in the prerequisites.|
47+
|**Chit-chat**|Select **Professional**|
48+
4249
1. In **Step 5**, select **Create your KB**.
4350

4451
When the creation process finishes, the portal displays the editable knowledge base.
@@ -155,7 +162,7 @@ There are two main scenarios for batch testing:
155162
* **Process chat log files** - Determine the top answer for a previously unseen question - the most common situation is when you need to process are log file of queries, such as a chat bot's user questions. Create a batch file test, with only the required columns. The test returns the top answer for each question. That doesn't mean it the top answer is the correct answer. Once you complete this test, move on to the validation test.
156163
* **Validation test** - Validate the expected answer. This test requires that all the questions and matching expected answers in the batch test have been validated. This may require some manual process.
157164

158-
The following procedure assumes the scenario is to process chat logs with
165+
The following procedure assumes the scenario is to process chat logs with
159166

160167
1. Create a new batch test file to include optional data, `batch-test-data-2.tsv`. Add the 6 rows from the original batch test input file, then add the metadata, top, and QnA set ID for each row.
161168

articles/cognitive-services/QnAMaker/Quickstarts/get-answer-from-knowledge-base-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get answer from knowledge base - REST, C# - QnA Maker"
33
description: This C# REST-based quickstart walks you through getting an answer from a knowledge base, programmatically.
44
ms.topic: quickstart
5-
ms.date: 01/28/2020
5+
ms.date: 02/08/2020
66
ROBOTS: NOINDEX,NOFOLLOW
77
ms.custom: RESTCHANGE-20200128
88
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically get an answer a knowledge base using C#.

articles/cognitive-services/QnAMaker/Quickstarts/get-answer-from-knowledge-base-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get answer from knowledge base - REST, Go - QnA Maker"
33
description: This Go REST-based quickstart walks you through getting an answer from a knowledge base, programmatically.
44
ms.topic: quickstart
5-
ms.date: 01/28/2020
5+
ms.date: 02/08/2020
66
ROBOTS: NOINDEX,NOFOLLOW
77
ms.custom: RESTCHANGE-20200128
88
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically get an answer a knowledge base using Go.

articles/cognitive-services/QnAMaker/Quickstarts/get-answer-from-knowledge-base-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get answer from knowledge base - REST, Java - QnA Maker"
33
description: This Java REST-based quickstart walks you through getting an answer from a knowledge base, programmatically.
44
ms.topic: quickstart
5-
ms.date: 01/28/2020
5+
ms.date: 02/08/2020
66
ROBOTS: NOINDEX,NOFOLLOW
77
ms.custom: RESTCHANGE-20200128
88
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically get an answer a knowledge base using Java.

articles/cognitive-services/QnAMaker/Quickstarts/get-answer-from-knowledge-base-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get answer from knowledge base - REST, Node.js - QnA Maker"
33
description: This Node.js REST-based quickstart walks you through getting an answer from a knowledge base, programmatically.
44
ms.topic: quickstart
5-
ms.date: 01/28/2020
5+
ms.date: 02/08/2020
66
ROBOTS: NOINDEX,NOFOLLOW
77
ms.custom: RESTCHANGE-20200128
88
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically get an answer a knowledge base using Node.js.

articles/cognitive-services/QnAMaker/Quickstarts/get-answer-from-knowledge-base-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get answer from knowledge base - REST, Python - QnA Maker"
33
description: This Python REST-based quickstart walks you through getting an answer from a knowledge base, programmatically.
44
ms.topic: quickstart
5-
ms.date: 01/28/2020
5+
ms.date: 02/08/2020
66
ROBOTS: NOINDEX,NOFOLLOW
77
ms.custom: RESTCHANGE-20200128
88
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically get an answer a knowledge base using Python.

articles/cognitive-services/QnAMaker/Quickstarts/publish-kb-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom: seodec18
99
ms.service: cognitive-services
1010
ms.subservice: qna-maker
1111
ms.topic: quickstart
12-
ms.date: 12/16/2019
12+
ms.date: 02/08/2020
1313
ms.author: diberry
1414
#Customer intent: As an API or REST developer new to the QnA Maker service, I want to programmatically publish a knowledge base using C#.
1515
---

0 commit comments

Comments
 (0)