Skip to content

Commit d84f1c7

Browse files
authored
Update concept-automated-ml.md
1 parent 91dbdd7 commit d84f1c7

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

articles/machine-learning/concept-automated-ml.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,32 +65,30 @@ See examples of regression and automated machine learning for predictions in the
6565

6666
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.
6767

68-
The following diagram illustrates this process.
69-
![Automated Machine learning](./media/concept-automated-ml/automl-concept-diagram2.png)
70-
7168
Using **Azure Machine Learning**, you can design and run your automated ML training experiments with these steps:
7269

7370
1. **Identify the ML problem** to be solved: classification, forecasting, or regression
7471

7572
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)
7773

7874
* 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).
8178

8279
1. **Specify the source and format of the labeled training data**: Numpy arrays or Pandas dataframe
8380

8481
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).
8582

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).
87-
88-
[!INCLUDE [aml-applies-to-enterprise-sku](../../includes/aml-applies-to-enterprise-sku-inline.md)]
89-
83+
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.
9084
1. **Submit the training run.**
9185

9286
1. **Review the results**
9387

88+
The following diagram illustrates this process.
89+
![Automated Machine learning](./media/concept-automated-ml/automl-concept-diagram2.png)
90+
91+
9492
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.
9593

9694
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

Comments
 (0)