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
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,20 +176,25 @@ The ONNX runtime also supports C#, so you can use the model built automatically
176
176
177
177
The web interface for automated ML always uses a remote [compute target](concept-compute-target.md). But when you use the Python SDK, you will choose either a local compute or a remote compute target for automated ML training.
178
178
179
-
***Local compute**: Training occurs on your local laptop or VM compute.
180
-
***Remote compute**: Training occurs on Machine Learning compute clusters.
179
+
***Local compute**: Training occurs on your local laptop or VM compute.
180
+
***Remote compute**: Training occurs on Machine Learning compute clusters.
181
181
182
-
If your scenario is about initial explorations or demos using small data and short trains (i.e. seconds or a couple of minutes per child run), training on your local computer might be a better choice. There is no setup time, the infrastructure resources (your PC or VM) are directly available. On a remote compute, the start up time for the internal infrastructure will add around 1.5 minutes per child run, plus additional minutes for the cluster infrastructure if the VMs are not yet up and running.
182
+
### Choose compute target
183
+
Consider these factors when choosing your compute target:
183
184
184
-
But, if you are training with larger datasets like in production training creating models which need longer trains, remote compute will provide much better end-to-end time performance because `AutoML` will parallelize trains across the cluster's nodes.
185
+
***Choose a local compute**: If your scenario is about initial explorations or demos using small data and short trains (i.e. seconds or a couple of minutes per child run), training on your local computer might be a better choice. There is no setup time, the infrastructure resources (your PC or VM) are directly available.
186
+
***Chose a remote ML compute cluster**: If you are training with larger datasets like in production training creating models which need longer trains, remote compute will provide much better end-to-end time performance because `AutoML` will parallelize trains across the cluster's nodes. On a remote compute, the start up time for the internal infrastructure will add around 1.5 minutes per child run, plus additional minutes for the cluster infrastructure if the VMs are not yet up and running.
185
187
188
+
### Pros and cons
186
189
Consider these pros and cons when choosing to use local vs. remote.
187
190
188
191
|| Pros (Advantages) |Cons (Handicaps) |
189
192
|---------|---------|---------|---------|
190
193
|**Local compute target**| <li> No environment start up time | <li> Subset of features<li> Can't parallelize runs <li> Worse for large data. <li>No data streaming while training <li> No DNN-based featurization <li> Python SDK only |
191
194
|**Remote ML compute clusters**| <li> Full set of features <li> Parallelize child runs <li> Large data support<li> DNN-based featurization <li> Dynamic scalability of compute cluster on demand <li> No-code experience (web UI) also available | <li> Start up time for cluster nodes <li> Start up time for each child run |
192
195
196
+
### Feature availability
197
+
193
198
More features are available when you use the remote compute, as shown in the table below. Some of these features are available only in an Enterprise workspace.
0 commit comments