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
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,9 +41,6 @@ The Notebooks section in your workspace is a good place to start learning about
41
41
42
42
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.
43
43
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
-
47
44
***Upload a file.**
48
45
49
46
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.
124
121
125
122
:::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":::
126
123
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.
128
125
129
126
## Develop a training script
130
127
@@ -141,7 +138,7 @@ This code uses `sklearn` for training and MLflow for logging the metrics.
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
0 commit comments