Skip to content

Commit 91540a0

Browse files
authored
Apply suggestions from code review
1 parent ca29ea2 commit 91540a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/v1/how-to-auto-train-models-v1.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
author: manashgoswami
1010
ms.author: magoswam
1111
ms.reviewer: ssalgado
12-
ms.date: 03/05/2024
12+
ms.date: 01/25/2023
1313
ms.custom: UpdateFrequency5, devx-track-python, automl, sdkv1
1414
---
1515

@@ -40,7 +40,7 @@ For no-code AutoML, try the following tutorials:
4040

4141
If you don't have an Azure subscription, create a free account before you begin. Try the [free or paid version](https://azure.microsoft.com/free/) of Azure Machine Learning today.
4242

43-
* Complete the [Create a workspace section](./concept-workspace.md) and [Create a compute instance](concept-compute-instance.md) if you don't already have an Azure Machine Learning workspace or a compute instance.
43+
* Complete the [Quickstart: Get started with Azure Machine Learning](../quickstart-create-resources.md) if you don't already have an Azure Machine Learning workspace or a compute instance.
4444
* After you complete the quickstart:
4545
1. Select **Notebooks** in the studio.
4646
1. Select the **Samples** tab.
@@ -174,9 +174,9 @@ from sklearn.model_selection import train_test_split
174174
x_train, x_test = train_test_split(final_df, test_size=0.2, random_state=223)
175175
```
176176

177-
The purpose of this step is to collect data points to test the finished model that are different from the data points used train the model, in order to measure true accuracy.
177+
The purpose of this step is to have data points to test the finished model that haven't been used to train the model, in order to measure true accuracy.
178178

179-
In other words, a well-trained model should be able to accurately make predictions on data it hasn't seen (to avoid overfitting). You now have data prepared for auto-training a machine learning model.
179+
In other words, a well-trained model should be able to accurately make predictions from data it hasn't already seen. You now have data prepared for auto-training a machine learning model.
180180

181181
## Automatically train a model
182182

0 commit comments

Comments
 (0)