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/cognitive-services/personalizer/how-to-create-resource.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Create Personalizer resource
3
3
description: Service configuration includes how the service treats rewards, how often the service explores, how often the model is retrained, and how much data is stored.
4
4
ms.topic: conceptual
5
-
ms.date: 02/19/2020
5
+
ms.date: 03/26/2020
6
6
---
7
7
8
8
# Create a Personalizer resource
@@ -24,28 +24,32 @@ Create a Personalizer resource for each feedback loop.
24
24
25
25
1. Select **Create** to create the resource.
26
26
27
-
1. Once your resource has deployed, select the **Go to Resource** button to go to your Personalizer resource. Go to the **Configuration** page for the new resource to [configure the learning loop](how-to-settings.md).
27
+
1. After your resource has deployed, select the **Go to Resource** button to go to your Personalizer resource.
28
+
29
+
1. Select the **Quick start** page for your resource, then copy the values for your endpoint and key. You need both the resource endpoint and key to use the Rank and Reward APIs.
30
+
31
+
1. Select the **Configuration** page for the new resource to [configure the learning loop](how-to-settings.md).
28
32
29
33
## Create a resource with the Azure CLI
30
34
31
35
1. Sign in to the Azure CLI with the following command:
32
36
33
-
```bash
37
+
```azurecli-interactive
34
38
az login
35
39
```
36
40
37
41
1. Create a resource group, a logical grouping to manage all Azure resources you intend to use with the Personalizer resource.
38
42
39
43
40
-
```bash
44
+
```azurecli-interactive
41
45
az group create \
42
46
--name your-personalizer-resource-group \
43
47
--location westus2
44
48
```
45
49
46
50
1. Create a new Personalizer resource, _learning loop_, with the following command for an existing resource group.
Copy file name to clipboardExpand all lines: articles/cognitive-services/personalizer/troubleshooting.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ If you are unsure about how your learning loop is currently behaving, run an [of
57
57
58
58
**Answer**: Personalizer returns the same probabilities in a Rank API result when it has just started and has an _empty_ model, or when you reset the Personalizer Loop, and your model is still within your **Model update frequency** period.
59
59
60
-
When the new update period begins, the updated model is used, and you’ll see the probabilities change.
60
+
When the new update period begins, the updated model is used, and you'll see the probabilities change.
61
61
62
62
</details>
63
63
@@ -88,7 +88,7 @@ When the new update period begins, the updated model is used, and you’ll see t
88
88
</details>
89
89
90
90
<details>
91
-
<summary><b>I created an offline evaluation and it succeeded almost instantly. Why is that? I don’t see any results?</b></summary>
91
+
<summary><b>I created an offline evaluation and it succeeded almost instantly. Why is that? I don't see any results?</b></summary>
92
92
93
93
**Answer**: The offline evaluation uses the trained model data from the events in that time period. If you did not send any data in the time period between start and end time of the evaluation, it will complete without any results. Submit a new offline evaluation by selecting a time range with events you know were sent to Personalizer.
0 commit comments