Skip to content

Commit e3f4d08

Browse files
committed
fix blocking issues
1 parent 419ee46 commit e3f4d08

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed
Binary file not shown.
Binary file not shown.

articles/machine-learning/tutorial-cloud-workstation.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ In order for your script to run, you need to be working in an environment config
103103
conda activate workstation_env
104104
```
105105

106-
> [!NOTE]
107-
> If you see a CommandNotFoundError, follow instructions to run `conda init bash`, close the terminal, and open a new one. Then retry the `conda activate workstation_env` command.
106+
> [!NOTE]
107+
> If you see a CommandNotFoundError, follow instructions to run `conda init bash`, close the terminal, and open a new one. Then retry the `conda activate workstation_env` command.
108108

109109
1. Validate the correct environment is active, again looking for the environment marked with a *.
110110

@@ -127,16 +127,12 @@ You now have a new kernel. Next you'll open a notebook and use this kernel.
127127
1. On the top menu bar, select **File > New File**.
128128
1. Name your new file **develop-tutorial.ipynb** (or enter your preferred name). Make sure you use the **.ipynb** extension.
129129
130-
:::image type="content" source="media/tutorial-cloud-workstation/vs-code-new-file.gif" alt-text="Screenshot: Create new file.":::
131-
132130
## Set the kernel
133131
134132
1. On the top right, select **Select kernel**.
135133
1. Select **Azure ML compute instance (computeinstance-name)**.
136134
1. Select the kernel you created, **Tutorial Workstation Env**. If you don't see it, select the **Refresh** tool at the top right.
137135

138-
:::image type="content" source="media/tutorial-cloud-workstation/select-kernel.gif" alt-text="Screenshot shows selecting the new kernel.":::
139-
140136
## Develop a training script
141137

142138
In this section, you develop a Python training script that predicts credit card default payments, using the prepared test and training datasets from the [UCI dataset](https://archive.ics.uci.edu/ml/datasets/default+of+credit+card+clients).
@@ -203,7 +199,7 @@ Now that you've tried two different models, use the results tracked by `MLFfow`
203199

204200
Now create a Python script from your notebook for model training.
205201

206-
1. In your VS Code window, right click on the notebook filename and select **Import Notebook to Script**.
202+
1. In your VS Code window, right-click on the notebook filename and select **Import Notebook to Script**.
207203

208204
1. Use the menu **File > Save** to save this new script file. Call it **train.py**.
209205
1. Look through this file and delete the code you don't want in the training script. For example, keep the code for the model you wish to use, and delete code for the model you don't want.
@@ -228,7 +224,7 @@ For now, you're running this code on your compute instance, which is your Azure
228224
:::image type="content" source="media/tutorial-cloud-workstation/run-python.png" alt-text="Screenshot shows the Run Python File tool at the top right of the screen.":::
229225
230226
> [!NOTE]
231-
> You can ignore the mlflow warnings. You'll still get all the metric and images from autologging.
227+
> You can ignore the mlflow warnings. You'll still get all the metrics and images from autologging.
232228
233229
## Examine script results
234230

0 commit comments

Comments
 (0)