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/how-to-auto-train-forecast.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Deep learning models have three intrinsic capabilities:
46
46
1. They support multiple inputs and outputs
47
47
1. They can automatically extract patterns in input data that spans over long sequences
48
48
49
-
Given larger data, deep learning models, such as Microsoft's ForecastTCN, can improve the scores of the resulting model. To leverage ForecastTCN set `enable_dnn=True` in your AutoMLConfig or select the **Enable deep learning** setting in the Automated ML SDK and UI respectively.
49
+
Given larger data, deep learning models, such as Microsoft's ForecastTCN, can improve the scores of the resulting model. Learn how to [configure your experiment for deep learning](#Configure-a-DNN-enable-Forecasting-experiment).
50
50
51
51
Native time series learners are also provided as part of automated ML. Prophet works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is accurate & fast, robust to outliers, missing data, and dramatic changes in your time series.
52
52
@@ -185,6 +185,17 @@ See the [forecasting sample notebooks](https://github.com/Azure/MachineLearningN
185
185
186
186
In order to leverage DNNs for forecasting, you will need to set the `enable_dnn` parameter in the AutoMLConfig to true.
187
187
188
+
```python
189
+
automl_config = AutoMLConfig(task='forecasting',
190
+
enable_dnn=True,
191
+
...
192
+
**time_series_settings)
193
+
```
194
+
Learn more about [the AutoMLConfig](#Configure-and-run-experiment).
195
+
196
+
Alternatively, you can select the `Enable deep learning` option in the studio.
We recommend using an AML Compute cluster with GPU SKUs and at least two nodes as the compute target. To allow sufficient time for the DNN training to complete, we recommend setting the experiment timeout to a minimum of a couple of hours.
189
200
For more information on AML compute and VM sizes that include GPU's, see the [AML Compute documentation](how-to-set-up-training-targets.md#amlcompute) and [GPU optimized virtual machine sizes documentation](https://docs.microsoft.com/azure/virtual-machines/linux/sizes-gpu).
0 commit comments