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
@@ -40,7 +40,7 @@ For no-code AutoML, try the following tutorials:
40
40
41
41
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.
42
42
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.
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.
44
44
* After you complete the quickstart:
45
45
1. Select **Notebooks** in the studio.
46
46
1. Select the **Samples** tab.
@@ -174,9 +174,9 @@ from sklearn.model_selection import train_test_split
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.
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.
178
178
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.
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.
0 commit comments