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/v1/tutorial-train-deploy-notebook.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,8 @@ This tutorial and accompanying **utils.py** file is also available on [GitHub](h
94
94
> Switch to the Jupyter Notebook now if you want to run the code while you read along.
95
95
> To run a single code cell in a notebook, click the code cell and hit **Shift+Enter**. Or, run the entire notebook by choosing **Run all** from the top toolbar.
Before you train a model, you need to understand the data you're using to train it. In this section, learn how to:
@@ -186,7 +188,7 @@ Train the model using the following code. This code uses MLflow autologging to t
186
188
You'll be using the [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) classifier from the [SciKit Learn framework](https://scikit-learn.org/) to classify the data.
187
189
188
190
> [!NOTE]
189
-
> The model training takes approximately 2 minutes to complete.**
191
+
> The model training takes approximately 2 minutes to complete.
190
192
191
193
192
194
```python
@@ -217,7 +219,6 @@ clf = LogisticRegression(
217
219
with mlflow.start_run() as run:
218
220
clf.fit(X_train, y_train)
219
221
```
220
-
221
222
## View experiment
222
223
223
224
In the left-hand menu in Azure Machine Learning studio, select __Jobs__ and then select your job (__azure-ml-in10-mins-tutorial__). A job is a grouping of many runs from a specified script or piece of code. Multiple jobs can be grouped together as an experiment.
@@ -252,8 +253,7 @@ from azureml.core.webservice import AciWebservice
If you want to control cost further, stop the compute instance by selecting the "Stop compute" button next to the **Compute** dropdown. Then start the compute instance again the next time you need it.
344
344
345
+
<!-- nbend -->
346
+
345
347
### Delete everything
346
348
347
349
Use these steps to delete your Azure Machine Learning workspace and all compute resources.
0 commit comments