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
# Tutorial: Reporting on automatic user account provisioning
21
21
22
-
Azure Active Directory (Azure AD) includes a [user account provisioning service](user-provisioning.md) that helps automate the provisioning de-provisioning of user accounts in SaaS apps and other systems, for the purpose of end-to-end identity lifecycle management. Azure AD supports pre-integrated user provisioning connectors for all of the applications and systems in the "Featured" section of the [Azure AD application gallery](https://azuremarketplace.microsoft.com/marketplace/apps/category/azure-active-directory-apps?page=1&subcategories=featured).
22
+
Azure Active Directory (Azure AD) includes a [user account provisioning service](user-provisioning.md) that helps automate the provisioning de-provisioning of user accounts in SaaS apps and other systems, for the purpose of end-to-end identity lifecycle management. Azure AD supports pre-integrated user provisioning connectors for all of the applications and systems with user provisioning tutorials [here](https://docs.microsoft.com/azure/active-directory/saas-apps/tutorial-list).
23
23
24
24
This article describes how to check the status of provisioning jobs after they have been set up, and how to troubleshoot the provisioning of individual users and groups.
In the LUIS portal, to see a list of apps or to create an app, select the subscription and authoring resource. Apps are accessed by the LUIS authoring resource.
9
+
In the LUIS portal, to see a list of apps or to create an app, select the subscription and authoring resource. Apps are accessed by the LUIS authoring resource.
16
10
17
-

11
+
> [!div class="mx-imgBorder"]
12
+
> 
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/includes/v3-prediction-endpoint.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,17 +5,17 @@ services: cognitive-services
5
5
author: diberry
6
6
manager: nitinme
7
7
ms.service: cognitive-services
8
-
ms.topic: include
8
+
ms.topic: include
9
9
ms.date: 10/14/2019
10
10
ms.author: diberry
11
11
---
12
12
13
13
14
-
1. In the LUIS portal, in the Manage section (top right menu), on the Keys and endpoints page (left menu), select the endpoint URL at the bottom of the page.
14
+
1. In the LUIS portal, in the **Manage** section (top right menu), on the **Azure Resources**page (left menu), on the **Prediction Resources** tab, copy the **example Query** at the bottom of the page.
15
15
16
-
This action opens browser tab with the endpoint URL in the address bar.
16
+
Paste the URL into a new browser tab.
17
17
18
18
The URL has your app ID, key, and slot name. The V3 prediction endpoint URL looks like:
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/luis-get-started-create-app.md
+18-24Lines changed: 18 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,8 @@
1
1
---
2
2
title: "Quickstart: create app - LUIS"
3
-
titleSuffix: Azure Cognitive Services
4
3
description: This quickstart shows how to create a LUIS app that uses the prebuilt domain `HomeAutomation` for turning lights and appliances on and off. This prebuilt domain provides intents, entities, and example utterances for you. When you're finished, you'll have a LUIS endpoint running in the cloud.
5
-
services: cognitive-services
6
-
author: diberry
7
-
ms.custom: seodec18
8
-
manager: nitinme
9
-
ms.service: cognitive-services
10
-
ms.subservice: language-understanding
11
4
ms.topic: quickstart
12
-
ms.date: 12/17/2019
13
-
ms.author: diberry
5
+
ms.date: 03/24/2020
14
6
#Customer intent: As a new user, I want to quickly get a LUIS app created so I can understand the model and actions to train, test, publish, and query.
15
7
---
16
8
@@ -25,11 +17,11 @@ In this quickstart, create a LUIS app that uses the prebuilt domain `HomeAutomat
25
17
## Create a new app
26
18
You can create and manage your applications on **My Apps**.
27
19
28
-
1.In the LUIS portal, on the My apps list, select **+ Create**.
20
+
1.On the My apps list, select **+ New app for conversation**.
29
21
30
-

22
+
1.In the dialog box, name your application `Home Automation`. Select **English** as the culture. The description is optional and isn't used for authoring or prediction. The prediction resource is also optional when creating a LUIS app. Select **Done**.
31
23
32
-
1. In the dialog box, name your application `Home Automation` then select **Done**. LUIS creates the app. The description is optional and isn't used for authoring or prediction. The prediction resource is also optional when creating a LUIS app. When you publish your app to production, you should assign a prediction resource so your app can handle many requests.
24
+
LUIS creates the app. When you publish your app to production, you should assign a prediction resource so your app can handle many requests.
33
25
34
26

35
27
@@ -62,23 +54,25 @@ Select the **HomeAutomation.TurnOff** intent. You can see that the intent contai
62
54
[!INCLUDE [LUIS How to Train steps](includes/howto-train.md)]
63
55
64
56
## Test your app
65
-
Once you've trained your app, you can test it. Select **Test**. Type a test utterance like `Turn off the lights` into the interactive test pane, and press Enter.
57
+
Once you've trained your app, you can test it.
66
58
67
-
```
68
-
Turn off the lights
69
-
```
59
+
1. Select **Test** from the top-right navigation. 1. Type a test utterance like `Turn off the lights` into the interactive test pane, and press Enter.
70
60
71
-
Check that the top scoring intent corresponds to the intent you expected for each test utterance.
61
+
```
62
+
Turn off the lights
63
+
```
64
+
65
+
Check that the top scoring intent corresponds to the intent you expected for each test utterance.
72
66
73
-
In this example, `Turn off the lights` is correctly identified as the top scoring intent of **HomeAutomation.TurnOff**.
67
+
In this example, `Turn off the lights` is correctly identified as the top scoring intent of **HomeAutomation.TurnOff**.
74
68
75
-

69
+

76
70
77
-
Select **Inspect** to review more information about the prediction.
71
+
1. Select **Inspect** to review more information about the prediction.
78
72
79
-

73
+

80
74
81
-
Select **Test** again to collapse the test pane.
75
+
1. Close the test pane.
82
76
83
77
<a name="publish-your-app"></a>
84
78
@@ -92,14 +86,14 @@ Select **Test** again to collapse the test pane.
92
86
93
87
[!INCLUDE [LUIS How to get endpoint first step](./includes/v3-prediction-endpoint.md)]
94
88
95
-
1. In the browser address bar, for the query string, make sure the following name and value bars are in the URL. If they are not in the query string, add them:
89
+
2. In the browser address bar, for the query string, make sure the following name and value bars are in the URL. If they are not in the query string, add them:
96
90
97
91
|Name/value pair|
98
92
|--|
99
93
|`verbose=true`|
100
94
|`show-all-intents=true`|
101
95
102
-
1. In the browser address bar, go to the end of the URL and enter `turn off the living room light` for the _query_ value, then press Enter.
96
+
3. In the browser address bar, go to the end of the URL and enter `turn off the living room light` for the _query_ value, then press Enter.
Copy file name to clipboardExpand all lines: articles/machine-learning/data-science-virtual-machine/dsvm-tools-data-platforms.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The following data platform tools are supported on the DSVM.
25
25
|||
26
26
| ------------- | ------------- |
27
27
| What is it? | A local relational database instance |
28
-
| Supported DSVM editions | Windows: SQL Server 2017, Windows 2019 (Preview) : SQL Server 2019 |
28
+
| Supported DSVM editions | Windows 2016: SQL Server 2017, Windows 2019: SQL Server 2019 |
29
29
| Typical uses | Rapid development locally with smaller dataset <br/> Run In-database R |
30
30
| Links to samples | A small sample of a New York City dataset is loaded into the SQL database:<br/> `nyctaxi` <br/> Jupyter sample showing Microsoft Machine Learning Server and in-database analytics can be found at:<br/> `~notebooks/SQL_R_Services_End_to_End_Tutorial.ipynb`|
31
31
| Related tools on the DSVM | SQL Server Management Studio <br/> ODBC/JDBC drivers<br/> pyodbc, RODBC<br />Apache Drill |
Copy file name to clipboardExpand all lines: articles/machine-learning/data-science-virtual-machine/dsvm-tools-data-science.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ There are several other machine-learning libraries on DSVMs, such as the popular
104
104
|||
105
105
| ------------- | ------------- |
106
106
| What is it? | Open-source SQL query engine on big data |
107
-
| Supported DSVM versions | Windows 2019 (Preview), Linux |
107
+
| Supported DSVM versions | Windows 2019, Linux |
108
108
| How is it configured and installed on the DSVM? | Installed in `/dsvm/tools/drill*` in embedded mode only |
109
109
| Typical uses | For in-place data exploration without requiring extract, transform, load (ETL). Query different data sources and formats, including CSV, JSON, relational tables, and Hadoop. |
110
110
| How to use and run it | Desktop shortcut <br/> [Get started with Drill in 10 minutes](https://drill.apache.org/docs/drill-in-10-minutes/)|
Copy file name to clipboardExpand all lines: articles/machine-learning/data-science-virtual-machine/dsvm-tools-development.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
@@ -22,7 +22,7 @@ The Data Science Virtual Machine (DSVM) bundles several popular tools in a highl
22
22
|||
23
23
| ------------- | ------------- |
24
24
| What is it? | General purpose IDE |
25
-
| Supported DSVM versions | Windows: Visual Studio 2017, Windows 2019 (Preview) : Visual Studio 2019 |
25
+
| Supported DSVM versions | Windows: Visual Studio 2017, Windows 2019 : Visual Studio 2019 |
26
26
| Typical uses | Software development |
27
27
| How is it configured and installed on the DSVM? | Data Science Workload (Python and R tools), Azure workload (Hadoop, Data Lake), Node.js, SQL Server tools, [Azure Machine Learning for Visual Studio Code](https://github.com/Microsoft/vs-tools-for-ai)|
28
28
| How to use and run it | Desktop shortcut (`C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe`). Graphically, open Visual Studio by using the desktop icon or the **Start** menu. Search for programs (Windows logo key+S), followed by **Visual Studio**. From there, you can create projects in languages like C#, Python, R, and Node.js. |
@@ -77,7 +77,7 @@ The Data Science Virtual Machine (DSVM) bundles several popular tools in a highl
77
77
|||
78
78
| ------------- | ------------- |
79
79
| What is it? | Client IDE for Python language |
80
-
| Supported DSVM versions | Windows 2019 (Preview), Linux |
80
+
| Supported DSVM versions | Windows 2019, Linux |
81
81
| Typical uses | Python development |
82
82
| How to use and run it | Desktop shortcut (`C:\Program Files\tk`) on Windows. Desktop shortcut (`/usr/bin/pycharm`) on Linux |
83
83
| Related tools on the DSVM | Visual Studio, Visual Studio Code, RStudio |
0 commit comments