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/service/tutorial-1st-experiment-sdk-train.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: tutorial
9
9
author: trevorbye
10
10
ms.author: trbye
11
11
ms.reviewer: trbye
12
-
ms.date: 07/20/2019
12
+
ms.date: 09/03/2019
13
13
---
14
14
15
15
# Tutorial: Train your first ML model
@@ -30,6 +30,21 @@ The only prerequisite is to run part one of this tutorial, [Setup environment an
30
30
31
31
In this part of the tutorial, you run the code in the sample Jupyter notebook `tutorials/tutorial-1st-experiment-sdk-train.ipynb` opened at the end of part one. This article walks through the same code that is in the notebook.
32
32
33
+
## Launch Jupyter web interface
34
+
35
+
After your VM is running, use the **Notebook VMs** section to launch the Jupyter web interface.
36
+
37
+
1. Select **Jupyter** in the **URI** column for your VM to start up the notebook server.
38
+
39
+
1. On the Jupyter notebook webpage, select the top foldername that contains your username.
40
+
41
+
This folder exists in the workspace [storage account](concept-workspace.md#resources) rather than on the notebook VM itself. If you delete the notebook VM, you'll still keep all your work. When you create a new notebook VM later, it will load this same folder. If you share your workspace with others, they will see your folder and you will see theirs.
42
+
43
+
1. Open the `samples-*` subdirectory, then open the Jupyter notebook `tutorials/tutorial-1st-experiment-sdk-train.ipynb`
44
+
45
+
> [!Warning]
46
+
> Ensure you open the `tutorial-1st-experiment-sdk-train.ipynb` file, **not** the `.yml` file of the > same name.
47
+
33
48
## Connect workspace and create experiment
34
49
35
50
Import the `Workspace` class, and load your subscription information from the file `config.json` using the function `from_config().` This looks for the JSON file in the current directory by default, but you can also specify a path parameter to point to the file using `from_config(path="your/file/path")`. In a cloud notebook server, the file is automatically in the root directory.
@@ -207,4 +222,4 @@ In this tutorial, you did the following tasks:
207
222
> * Viewed training results in the portal and retrieved models
208
223
209
224
[Deploy your model](tutorial-deploy-models-with-aml.md) with Azure Machine Learning.
210
-
Learn how to develop [automated machine learning](tutorial-auto-train-models.md) experiments.
225
+
Learn how to develop [automated machine learning](tutorial-auto-train-models.md) experiments.
0 commit comments