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/concept-automated-ml.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,32 +65,30 @@ See examples of regression and automated machine learning for predictions in the
65
65
66
66
During training, Azure Machine Learning creates a number of pipelines in parallel that try different algorithms and parameters for you. The service iterates through ML algorithms paired with feature selections, where each iteration produces a model with a training score. The higher the score, the better the model is considered to "fit" your data. It will stop once it hits the exit criteria defined in the experiment.
Using **Azure Machine Learning**, you can design and run your automated ML training experiments with these steps:
72
69
73
70
1.**Identify the ML problem** to be solved: classification, forecasting, or regression
74
71
75
72
1.**Choose whether you want to use the Python SDK or the studio web experience**.
76
-
* For Python developers, check out the [Azure Machine Learning Python SDK](https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py#automlconfig)
77
73
78
74
* For limited or no code experience, try the Azure Machine Learning studio web experience at [https://ml.azure.com](https://ml.azure.com/)
79
-
80
-
Learn about the parity between the [Python SDK and studio web experience](#parity).
75
+
* For Python developers, check out the [Azure Machine Learning Python SDK](how-to-configure-auto-train.md)
76
+
77
+
[!INCLUDE [aml-applies-to-enterprise-sku](../../includes/aml-applies-to-enterprise-sku-inline.md)] Learn about the parity between the [Python SDK and studio web experience](#parity).
81
78
82
79
1.**Specify the source and format of the labeled training data**: Numpy arrays or Pandas dataframe
83
80
84
81
1.**Configure the compute target for model training**, such as your [local computer, Azure Machine Learning Computes, remote VMs, or Azure Databricks](how-to-set-up-training-targets.md). Learn about automated training [on a remote resource](how-to-auto-train-remote.md).
85
82
86
-
1.**Configure the automated machine learning parameters** that determine how many iterations over different models, hyperparameter settings, advanced preprocessing/featurization, and what metrics to look at when determining the best model. You can configure the settings for automatic training experiment in [Azure Machine Learning studio](https://ml.azure.com), or [with the SDK](how-to-configure-auto-train.md).
1.**Configure the automated machine learning parameters** that determine how many iterations over different models, hyperparameter settings, advanced preprocessing/featurization, and what metrics to look at when determining the best model.
You can also inspect the logged run information, which [contains metrics](how-to-understand-automated-ml.md) gathered during the run. The training run produces a Python serialized object (`.pkl` file) that contains the model and data preprocessing.
95
93
96
94
While model building is automated, you can also [learn how important or relevant features are](how-to-configure-auto-train.md#explain) to the generated models.
0 commit comments