Skip to content

Commit 3c01831

Browse files
authored
Merge pull request #111999 from cartacioS/patch-36
Updating forecasting model info
2 parents ed424aa + c8e2102 commit 3c01831

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

articles/machine-learning/how-to-auto-train-forecast.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ You can [configure](#config) how far into the future the forecast should extend
3131

3232
Features extracted from the training data play a critical role. And, automated ML performs standard pre-processing steps and generates additional time-series features to capture seasonal effects and maximize predictive accuracy.
3333

34-
## Time-series and Deep Learning models
34+
## Time-series and deep learning models
3535

3636

3737
Automated ML provides users with both native time-series and deep learning models as part of the recommendation system. These learners include:
38-
+ Prophet
39-
+ Auto-ARIMA
40-
+ ForecastTCN
38+
+ Prophet (Preview)
39+
+ Auto-ARIMA (Preview)
40+
+ ForecastTCN (Preview)
4141

4242
Automated ML's deep learning allows for forecasting univariate and multivariate time series data.
4343

@@ -46,7 +46,7 @@ Deep learning models have three intrinsic capabilities:
4646
1. They support multiple inputs and outputs
4747
1. They can automatically extract patterns in input data that spans over long sequences
4848

49-
Given larger data, deep learning models, such as Microsoft's ForecastTCN, can improve the scores of the resulting model.
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).
5050

5151
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.
5252

@@ -185,6 +185,17 @@ See the [forecasting sample notebooks](https://github.com/Azure/MachineLearningN
185185
186186
In order to leverage DNNs for forecasting, you will need to set the `enable_dnn` parameter in the AutoMLConfig to true.
187187

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.
197+
![alt text](./media/how-to-auto-train-forecast/enable_dnn.png)
198+
188199
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.
189200
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).
190201

230 KB
Loading

0 commit comments

Comments
 (0)