You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/avere-vfxt/avere-vfxt-deploy.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,7 @@ Under **TERMS AND CONDITIONS**:
86
86
> [!NOTE]
87
87
> If you are not a subscription owner, have an owner accept the terms for you by following the prerequisite steps in [Accept software terms in advance](avere-vfxt-prereqs.md#accept-software-terms-in-advance).
88
88
89
+
89
90
Click **Purchase** when finished. After five or six minutes, your controller node will be up and running.
90
91
91
92
Visit the outputs page to gather the controller information that you need to create the cluster. Read [Information needed to create the cluster](#information-needed-to-create-the-cluster) to learn more.
@@ -220,7 +221,9 @@ To do the rest of the deployment steps, you need to connect to the cluster contr
220
221
## Create the cluster node access role
221
222
222
223
> [!NOTE]
223
-
> If you are not a subscription owner, and the role has not already been created, have a subscription owner follow these steps or use the procedure in [Create the Avere vFXT cluster runtime access role without a controller](avere-vfxt-pre-role.md).
224
+
> * If you are not a subscription owner, and the role has not already been created, have a subscription owner follow these steps or use the procedure in [Create the Avere vFXT cluster runtime access role without a controller](avere-vfxt-pre-role.md).
225
+
>
226
+
> * Microsoft internal users should use the existing role named "Avere Cluster Runtime Operator" instead of attempting to create one.
224
227
225
228
[Role-based access control](https://docs.microsoft.com/azure/role-based-access-control/) (RBAC) gives the vFXT cluster nodes authorization to perform necessary tasks.
Copy file name to clipboardExpand all lines: articles/cognitive-services/QnAMaker/Concepts/confidence-score.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,8 @@ When choosing your threshold, keep in mind the balance between Accuracy and Cove
47
47
48
48
- If **Coverage** (or recall) is more important- and you want to answer as many questions as possible, even if there is only a partial relation to the user's question- then LOWER the threshold. This means there could be more cases where the answer does not answer the user's actual query, but gives some other somewhat related answer. *For example:* if you make the threshold **30**, you might give not very related answers like, answering with the above example, for queries like "Where can I edit my KB?"
49
49
50
+
> [!NOTE]
51
+
> Newer versions of QnA Maker include improvements to scoring logic, and could affect your threshold. Any time you update the service, make sure to test and tweak the threshold if necessary. You can check your QnA Service version [here](https://www.qnamaker.ai/UserSettings), and see how to get the latest updates [here](../How-To/troubleshooting-runtime.md).
50
52
51
53
## Improve confidence scores
52
54
To improve the confidence score of a particular response to a user query, you can add the user query to the knowledge base as an alternate question on that response.
Copy file name to clipboardExpand all lines: articles/load-balancer/quickstart-create-basic-load-balancer-portal.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,14 @@ description: This quickstart shows how to create a public Basic load balancer by
4
4
services: load-balancer
5
5
documentationcenter: na
6
6
author: KumudD
7
+
manager: jeconnoc
8
+
editor: ''
9
+
tags: azure-resource-manager
7
10
Customer intent: I want to create a Basic Load balancer so that I can load balance internet traffic to VMs.
8
11
ms.assetid: aa9d26ca-3d8a-4a99-83b7-c410dd20b9d0
9
12
ms.service: load-balancer
10
13
ms.devlang: na
11
-
ms.topic: quickstart
14
+
ms.topic: hero-article
12
15
ms.tgt_pltfrm: na
13
16
ms.workload: infrastructure-services
14
17
ms.date: 03/22/2018
@@ -151,7 +154,6 @@ To allow the Basic load balancer to monitor the status of your app, you use a he
151
154
-**myHealthProbe** for the name of the health probe
152
155
-**HTTP** for the protocol type
153
156
-**80** for the port number
154
-
-**Healthprobe.aspx** for the URI path. You can either replace this value with any other URI or keep the default path value of **"\\"** to get the default URI.
155
157
-**15** for **Interval**, the number of seconds between probe attempts
156
158
-**2** for **Unhealthy threshold**, the number of consecutive probe failures that must occur before a VM is considered unhealthy
Copy file name to clipboardExpand all lines: articles/load-balancer/quickstart-load-balancer-standard-public-portal.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ description: This quickstart shows how to create a Standard load balancer by usi
4
4
services: load-balancer
5
5
documentationcenter: na
6
6
author: KumudD
7
+
manager: jeconnoc
8
+
editor: ''
7
9
tags: azure-resource-manager
8
10
Customer intent: I want to create a Standard Load balancer so that I can load balance internet traffic to VMs.
9
11
@@ -139,7 +141,6 @@ To allow the load balancer to monitor the status of your app, you use a health p
139
141
-*myHealthProbe* - for the name of the health probe.
140
142
-**HTTP** - for the protocol type.
141
143
-*80* - for the port number.
142
-
-**Healthprobe.aspx** for the URI path. You can either replace this value with any other URI or keep the default path value of **"\\"** to get the default URI.
143
144
-*15* - for number of **Interval** in seconds between probe attempts.
144
145
-*2* - for number of **Unhealthy threshold** or consecutive probe failures that must occur before a VM is considered unhealthy.
> Code in this article was tested with Azure Machine Learning SDK version 0.1.74
39
+
37
40
If you don’t have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
38
41
39
42
@@ -52,64 +55,39 @@ Before you install the SDK, we recommend that you create an isolated Python envi
52
55
53
56
Open a command-line window. Then create a new conda environment named `myenv` with Python 3.6.
54
57
55
-
```sh
58
+
```shell
56
59
conda create -n myenv -y Python=3.6
57
60
```
58
61
59
62
Activate the environment.
60
63
61
-
```sh
64
+
```shell
62
65
conda activate myenv
63
66
```
64
67
65
68
### Install the SDK
66
69
67
70
In the activated conda environment, install the SDK. The below command installs the core components of the Machine Learning SDK. It also installs a Jupyter Notebook server in the `myenv` conda environment. The installation takes a few minutes to finish, depending on the configuration of your machine.
Create a new Azure resource group and a new workspace.
115
93
@@ -118,35 +96,28 @@ Find a value for `<azure-subscription-id>` in the [subscriptions list in the Azu
118
96
```python
119
97
from azureml.core import Workspace
120
98
ws = Workspace.create(name='myworkspace',
121
-
subscription_id='<azure-subscription-id>',
99
+
subscription_id='<azure-subscription-id>',
122
100
resource_group='myresourcegroup',
123
101
create_resource_group=True,
124
-
location='eastus2'# or other supported Azure region
102
+
location='eastus2'# or other supported Azure region
125
103
)
126
104
```
127
105
128
106
Executing the preceding code might trigger a new browser window for you to sign into your Azure account. After you sign in, the authentication token is cached locally.
129
107
130
108
To see the workspace details, such as associated storage, container registry, and key vault, enter the following code.
Save the details of your workspace in a configuration file into the current directory. This file is called 'aml_config\config.json'.
139
116
140
117
This workspace configuration file makes it easy to load this same workspace later. You can load it with other notebooks and scripts in the same directory or a subdirectory.
0 commit comments