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-cloud-workstation.md
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.topic: tutorial
10
10
author: lebaro-msft
11
11
ms.author: lebaro
12
12
ms.reviewer: sgilley
13
-
ms.date: 03/15/2023
13
+
ms.date: 09/26/2023
14
14
#Customer intent: As a data scientist, I want to know how to prototype and develop machine learning models on a cloud workstation.
15
15
---
16
16
@@ -46,7 +46,8 @@ In order for your script to run, you need to be working in an environment config
46
46
47
47
Files you upload are stored in an Azure file share, and these files are mounted to each compute instance and shared within the workspace.
48
48
49
-
1. Download this conda environment file, [*workstation_env.yml*](https://azuremlexampledata.blob.core.windows.net/datasets/workstation_env.yml) to your computer.
49
+
1. Download this conda environment file, [*workstation_env.yml*](https://github.com/Azure/azureml-examples/blob/main/tutorials/get-started-notebooks/workstation_env.yml) to your computer by using the **Download raw file** button at the top right.
50
+
<!-- use this link instead once it works again [*workstation_env.yml*](https://azuremlexampledata.blob.core.windows.net/datasets/workstation_env.yml) to your computer. -->
50
51
1. Select **Add files**, then select **Upload files** to upload it to your workspace.
51
52
52
53
:::image type="content" source="media/tutorial-cloud-workstation/upload-files.png" alt-text="Screenshot shows how to upload files to your workspace.":::
@@ -55,10 +56,9 @@ In order for your script to run, you need to be working in an environment config
55
56
1. Select **workstation_env.yml** file you downloaded.
56
57
1. Select **Upload**.
57
58
58
-
You'll see the *workstation_env.yml* file under your username folder in the **Files** tab. Select this file to preview it, and see what dependencies it specifies.
59
-
60
-
:::image type="content" source="media/tutorial-cloud-workstation/view-yml.png" alt-text="Screenshot shows the yml file that you uploaded.":::
59
+
You'll see the *workstation_env.yml* file under your username folder in the **Files** tab. Select this file to preview it, and see what dependencies it specifies. You'll see contents like this:
> You can ignore the mlflow warnings. You'll still get all the results you need tracked.
164
+
159
165
## Examine results
160
166
161
167
Now that you've tried two different models, use the results tracked by `MLFfow` to decide which model is better. You can reference metrics like accuracy, or other indicators that matter most foryour scenarios. You can dive into these resultsin more detail by looking at the jobs created by `MLflow`.
@@ -226,6 +232,9 @@ For now, you're running this code on your compute instance, which is your Azure
226
232
python train.py
227
233
```
228
234
235
+
> [!NOTE]
236
+
> You can ignore the mlflow warnings. You'll still get all the metric and images from autologging.
237
+
229
238
## Examine script results
230
239
231
240
Go back to **Jobs** to see the results of your training script. Keep in mind that the training data changes with each split, so the results differ between runs as well.
0 commit comments