Skip to content

Commit 7e5e8a4

Browse files
Merge pull request #235224 from sdgilley/sdg-for-main
update cloud tutorial - custom env is required
2 parents 1d0f873 + 4573875 commit 7e5e8a4

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ The Notebooks section in your workspace is a good place to start learning about
4141

4242
In order for your script to run, you need to be working in an environment configured with the dependencies and libraries the code expects. This section helps you create an environment tailored to your code. To create the new Jupyter kernel your notebook connects to, you'll use a YAML file that defines the dependencies.
4343

44-
> [!TIP]
45-
> The code in this tutorial works in the default kernel the notebook connects to. You'll find that the pre-configured kernels often have what you need for your machine learning tasks. If you prefer not to create a new kernel, skip to [Create a notebook](#create-a-notebook).
46-
4744
* **Upload a file.**
4845

4946
Files you upload are stored in an Azure file share, and these files are mounted to each compute instance and shared within the workspace.
@@ -124,7 +121,7 @@ You now have a new kernel. Next you'll open a notebook and use this kernel.
124121

125122
:::image type="content" source="media/tutorial-azure-ml-in-a-day/start-compute.png" alt-text="Screenshot shows how to start compute if it's stopped." lightbox="media/tutorial-azure-ml-in-a-day/start-compute.png":::
126123

127-
1. You'll see the notebook is connected to the default kernel in the top right. If you created the new **Tutorial Workstation Env** kernel, switch to it now.
124+
1. You'll see the notebook is connected to the default kernel in the top right. Switch to use the **Tutorial Workstation Env** kernel.
128125
129126
## Develop a training script
130127
@@ -141,7 +138,7 @@ This code uses `sklearn` for training and MLflow for logging the metrics.
141138
[!notebook-python[] (~/azureml-examples-main/tutorials/get-started-notebooks/cloud-workstation.ipynb?name=load)]
142139

143140
1. Get the data ready for training:
144-
1.
141+
145142
[!notebook-python[] (~/azureml-examples-main/tutorials/get-started-notebooks/cloud-workstation.ipynb?name=extract)]
146143

147144
1. Add code to start autologging with `MLflow`, so that you can track the metrics and results. With the iterative nature of model development, `MLflow` helps you log model parameters and results. Refer back to those runs to compare and understand how your model performs. The logs also provide context for when you're ready to move from the development phase to the training phase of your workflows within Azure Machine Learning.
@@ -215,7 +212,7 @@ For now, you're running this code on your compute instance, which is your Azure
215212
conda env list
216213
```
217214
218-
1. If you created a new kernel, activate it now:
215+
1. Activate your kernel:
219216
220217
```bash
221218
conda activate workstation_env

0 commit comments

Comments
 (0)