Skip to content

Commit 437e209

Browse files
Merge pull request #225450 from EricWrightAtWork/how-to-forecasting-sdkv2
Migrate AutoML forecasting how-to guide to SDKv2
2 parents fd11d6f + 5ce4014 commit 437e209

File tree

9 files changed

+869
-298
lines changed

9 files changed

+869
-298
lines changed

articles/machine-learning/concept-automl-forecasting-methods.md

Lines changed: 43 additions & 16 deletions
Large diffs are not rendered by default.

articles/machine-learning/concept-automl-forecasting-sweeping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Naive, Seasonal Naive, Average, Seasonal Average | Time series | No sweeping wit
2727
Exponential Smoothing, ARIMA(X) | Time series | Grid search for within-class sweeping
2828
Prophet | Regression | No sweeping within class
2929
Linear SGD, LARS LASSO, Elastic Net, K Nearest Neighbors, Decision Tree, Random Forest, Extremely Randomized Trees, Gradient Boosted Trees, LightGBM, XGBoost | Regression | AutoML's [model recommendation service](https://www.microsoft.com/research/publication/probabilistic-matrix-factorization-for-automated-machine-learning/) dynamically explores hyper-parameter spaces
30-
Temporal Convolutional Network | Regression | Static list of models followed by random search over network size, dropout ratio, and learning rate.
30+
ForecastTCN | Regression | Static list of models followed by random search over network size, dropout ratio, and learning rate.
3131

3232
For a description of the different model types, see the [forecasting models](./concept-automl-forecasting-methods.md#forecasting-models-in-automl) section of the methods overview article.
3333

@@ -51,7 +51,7 @@ AutoML has two validation configurations - cross-validation and explicit validat
5151

5252
AutoML follows the usual cross-validation procedure, training a separate model on each fold and averaging validation metrics from all folds.
5353

54-
Cross-validation for forecasting jobs is configured by setting the number of cross-validation folds and, optionally, the number of time periods between two consecutive cross-validation folds. See the [training and validation data](./how-to-auto-train-forecast.md#training-and-validation-data) guide for more information and an example of configuring cross-validation for forecasting.
54+
Cross-validation for forecasting jobs is configured by setting the number of cross-validation folds and, optionally, the number of time periods between two consecutive cross-validation folds. See the [custom cross-validation settings](./how-to-auto-train-forecast.md#custom-cross-validation-settings) guide for more information and an example of configuring cross-validation for forecasting.
5555

5656
You can also bring your own validation data. Learn more in the [configure data splits and cross-validation in AutoML](how-to-configure-cross-validation-data-splits.md#provide-validation-data) article.
5757

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

Lines changed: 294 additions & 217 deletions
Large diffs are not rendered by default.

articles/machine-learning/how-to-automl-forecasting-faq.md

Lines changed: 34 additions & 60 deletions
Large diffs are not rendered by default.

articles/machine-learning/how-to-configure-auto-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Guardrail|Status|Condition for trigger
135135

136136
You can customize your featurization settings to ensure that the data and features that are used to train your ML model result in relevant predictions.
137137

138-
To customize featurizations, specify `"featurization": FeaturizationConfig` in your `AutoMLConfig` object. If you're using the Azure Machine Learning studio for your experiment, see the [how-to article](how-to-use-automated-ml-for-ml-models.md#customize-featurization). To customize featurization for forecastings task types, refer to the [forecasting how-to](how-to-auto-train-forecast.md#customize-featurization).
138+
To customize featurizations, specify `"featurization": FeaturizationConfig` in your `AutoMLConfig` object. If you're using the Azure Machine Learning studio for your experiment, see the [how-to article](how-to-use-automated-ml-for-ml-models.md#customize-featurization). To customize featurization for forecastings task types, refer to the [forecasting how-to](v1/how-to-auto-train-forecast-v1.md#customize-featurization).
139139

140140
Supported customizations include:
141141

191 KB
Loading

articles/machine-learning/toc.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
href: concept-automated-ml.md
152152
- name: Time series forecasting
153153
items:
154-
- name: Overview of forecasting methods
154+
- name: Forecasting methods
155155
displayName: auto ML, time series, forecasting, methods
156156
href: concept-automl-forecasting-methods.md
157157
- name: Model sweeping and selection
@@ -552,6 +552,14 @@
552552
- name: Auto-train a natural language processing model
553553
displayName: nlp, auto ML, automl, SDK
554554
href: how-to-auto-train-nlp-models.md
555+
- name: Time series forecasting
556+
items:
557+
- name: Auto-train a forecasting model (Python)
558+
displayName: forecasting, time series, auto ML, automl, SDK
559+
href: how-to-auto-train-forecast.md
560+
- name: Frequently asked questions
561+
displayName: auto ML, time series, forecasting, FAQ
562+
href: how-to-automl-forecasting-faq.md
555563
- name: Understand charts and metrics
556564
href: how-to-understand-automated-ml.md
557565
- name: Use ONNX model in .NET application

0 commit comments

Comments
 (0)