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
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,48 @@ See the [how-to](how-to-configure-auto-train.md#ensemble) for changing default e
142
142
143
143
With Azure Machine Learning, you can use automated ML to build a Python model and have it converted to the ONNX format. The ONNX runtime supports C#, so you can use the model built automatically in your C# apps without any need for recoding or any of the network latencies that REST endpoints introduce. Try an example of this flow [in this Jupyter notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb).
144
144
145
+
## Local and remote compute targets
146
+
147
+
With the Python SDK, you can train your models on either a local computer or a remote compute target. More features are available when you use the remote compute. If you have small data and want to get started quickly, training on your local computer is your best choice. When you use a remote compute, such as Azure Managed compute clusters, factor in setup time:
148
+
* Around 1 minute for each node in the cluster
149
+
* Around 1.5 minutes for each child-run environment setup
150
+
151
+
152
+
|| Best for | Pros (Advantages) |Cons (Handicaps) |
153
+
|---------|---------|---------|---------|
154
+
|Local compute target | Small data, getting started, quick demo | Infrastructure resources are directly available, no environment setup time <br/> | Subset of features available for remote compute targets <br/> Cannot parallelize |
155
+
|[Azure Machine Learning compute cluster](../articles/machine-learning/how-to-set-up-training-targets.md#amlcompute)| Larger data, production data, production training | Full set of features <br/> Scale out to multiple child runs <br/> Dynamic scalability of compute cluster based on demand | Start-up time for cluster nodes, start up for each child run |
156
+
157
+
158
+
Use either a **local or a remote target** to:
159
+
* Create and run experiments in notebooks
160
+
* Register and visualize experiment's info and metrics in UI
161
+
* Forecasting support
162
+
* Create ONNX models
163
+
* Ensemble iterations
164
+
* Use subsampling
165
+
* Apply data guardrails
166
+
* View model interpretability in notebooks
167
+
168
+
Not sure where these go yet:
169
+
* Prophet or ARIMA models for forecasting
170
+
* Feature Sweeping (or advanced transformers)
171
+
* Custom featurizers support
172
+
* Feature engineering customization SDK
173
+
* Many models training SDK
174
+
175
+
Switch to a **remote target** to add more flexibility and features:
176
+
177
+
* Multiple runs/iterations running in parallel
178
+
* Cancel an iteration
179
+
* Continue a run
180
+
* Data streaming (Large data support, up to 100GB)
181
+
* DNN-based text featurization
182
+
* Feature engineering customization UI
183
+
184
+
@@Not sure this goes here...?
185
+
You also use a remote compute target in the studio to build a [no-code automated machine learning](how-to-use-automated-ml-for-ml-models.md) and view [model intrpretability](@@Do we have an article that shows this?).
186
+
145
187
## Automated ML in Azure Machine Learning
146
188
147
189
Azure Machine Learning offers two experiences for working with automated ML
0 commit comments