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/machine-learning/tutorial-setup-vscode-extension.md
+33-8Lines changed: 33 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.subservice: core
8
8
ms.topic: tutorial
9
9
author: luisquintanilla
10
10
ms.author: luquinta
11
-
ms.date: 01/16/2019
11
+
ms.date: 01/31/2020
12
12
#Customer intent: As a professional data scientist, I want to learn how to get started with the Azure Machine Learning Visual Studio Code Extension.
13
13
---
14
14
@@ -27,6 +27,7 @@ In this tutorial, you learn the following tasks:
27
27
28
28
- Azure subscription. If you don't have one, sign up to try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree).
29
29
- Install [Visual Studio Code](https://code.visualstudio.com/docs/setup/setup-overview), a lightweight, cross-platform code editor.
30
+
-[Python 3](https://www.python.org/downloads/)
30
31
31
32
## Install the extension
32
33
@@ -47,7 +48,7 @@ In order to provision resources and run workloads on Azure, you have to sign in
47
48
1. Open the command palette by selecting **View > Command Palette** from the menu bar.
48
49
1. Enter the command "Azure: Sign In" into the text box to start the sign in process.
49
50
50
-
## Run a script in Azure
51
+
## Run a machine learning model training script in Azure
51
52
52
53
Now that you have signed into Azure with your account credentials, Use the steps in this section to learn how to use the extension to train a machine learning model.
53
54
@@ -75,16 +76,16 @@ Now that you have signed into Azure with your account credentials, Use the steps
75
76
76
77
```json
77
78
{
78
-
"workspace": "WS12191742",
79
-
"resourceGroup": "WS12191742-rg2",
79
+
"workspace": "WS01311608",
80
+
"resourceGroup": "WS01311608-rg1",
80
81
"location": "South Central US",
81
-
"experiment": "WS12191742-exp2",
82
+
"experiment": "WS01311608-exp1",
82
83
"compute": {
83
-
"name": "WS12191742-com2",
84
+
"name": "WS01311608-com1",
84
85
"vmSize": "Standard_D1_v2, Cores: 1; RAM: 3.5GB;"
85
86
},
86
87
"runConfiguration": {
87
-
"filename": "WS12191742-com2-rc1",
88
+
"filename": "WS01311608-com1-rc1",
88
89
"condaDependencies": [
89
90
"python=3.6.2",
90
91
"tensorflow=1.15.0"
@@ -97,7 +98,31 @@ Now that you have signed into Azure with your account credentials, Use the steps
97
98
```
98
99
99
100
1. Select **Submit experiment** to run your experiment in Azure. This sends the `train.py` and configuration file to your Azure Machine Learning workspace. The training job is then started on a compute resource in Azure.
100
-
1. After several minutes, a directory called `output` is created locally containing a trained TensorFlow model.
101
+
102
+
### Track the progress of the training script
103
+
104
+
Running your script can take several minutes. To track its progress:
105
+
106
+
1. Select the **Azure** icon from the activity bar.
107
+
1. Expand your subscription node.
108
+
1. Expand your currently running experiment's node. This is located inside the `{workspace}/Experiments/{experiment}` node where the values for your workspace and experiment are the same as the properties defined in the configuration file.
109
+
1. All of the runs as well as their status for the experiment are listed. To get the most recent status, click the refresh icon at the top of the Azure Machine Learning View.
0 commit comments