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
@@ -31,7 +31,7 @@ The diagram shows two important inference parameters:
31
31
* The **context length**, or the amount of history that the model requires to make a forecast,
32
32
* The **forecast horizon**, which is how far ahead in time the forecaster is trained to predict.
33
33
34
-
Forecasting models generally use some amount of historical information, the context, to make predictions ahead in time up to the forecast horizon. **When the context is part of the training data, AutoML saves what it needs to make forecasts**, so there is no need to explicitly provide it.
34
+
Forecasting models usually use some historical information, the context, to make predictions ahead in time up to the forecast horizon. **When the context is part of the training data, AutoML saves what it needs to make forecasts**, so there is no need to explicitly provide it.
35
35
36
36
There are two other inference scenarios that are more complicated:
@@ -259,7 +259,7 @@ Forecasting tasks have many settings that are specific to forecasting. The most
259
259
260
260
# [Python SDK](#tab/python)
261
261
262
-
Use the [set_forecast_settings()](/python/api/azure-ai-ml/azure.ai.ml.automl.forecastingjob#azure-ai-ml-automl-forecastingjob-set-forecast-settings)method of a ForecastingJob to configure these settings:
262
+
Use the [ForecastingJob](/python/api/azure-ai-ml/azure.ai.ml.automl.forecastingjob#azure-ai-ml-automl-forecastingjob-set-forecast-settings)methods to configure these settings:
263
263
264
264
```python
265
265
# Forecasting specific configuration
@@ -350,7 +350,7 @@ There are two optional settings that control the model space where AutoML search
350
350
```python
351
351
# Only search ExponentialSmoothing and ElasticNet models
Now, the job searches over all model classes _except_ Prophet. For a list of forecasting model names that are accepted in `allowed_training_algorithms` and `blocked_training_algorithms`, see the [training properties](reference-automated-ml-forecasting.md#training) reference documentation.
418
+
Now, the job searches over all model classes _except_ Prophet. For a list of forecasting model names that are accepted in `allowed_training_algorithms` and `blocked_training_algorithms`, see the [training properties](reference-automated-ml-forecasting.md#training) reference documentation. Either, but not both, of `allowed_training_algorithms` and `blocked_training_algorithms` can be applied to a training run.
419
419
420
420
#### Enable deep learning
421
421
@@ -442,7 +442,7 @@ forecasting_job.set_training(
442
442
# training settings
443
443
# Include TCNForecaster models in the model search
In following CLI command, we assume the job YAML configuration is at the path, `./automl-forecasting-job.yml`:
744
+
In following CLI command, we assume the job YAML configuration is in the current working directory at the path, `./automl-forecasting-job.yml`. If you run the command from a different directory, you will need to change the path accordingly.
745
745
746
746
```azurecli
747
747
run_id=$(az ml job create --file automl-forecasting-job.yml)
@@ -1039,11 +1039,12 @@ The many models components in AutoML enable you to train and manage millions of
1039
1039
1040
1040
### Many models training configuration
1041
1041
1042
-
The many models training component accepts a YAML format configuration file of AutoML training settings. The component applies these settings to each AutoML instance it launches. This YAML file has the same specification as the [Forecasting Job](reference-automated-ml-forecasting.md) plus one additional parameter named `partition_column_names`.
1042
+
The many models training component accepts a YAML format configuration file of AutoML training settings. The component applies these settings to each AutoML instance it launches. This YAML file has the same specification as the [Forecasting Job](reference-automated-ml-forecasting.md) plus additional parameters `partition_column_names` and `allow_multi_partitions`.
1043
1043
1044
1044
Parameter|Description
1045
1045
--|--
1046
1046
| **partition_column_names** | Column names in the data that, when grouped, define the data partitions. Many models launches an independent training job on each partition.
1047
+
| **allow_multi_partitions** | An optional flag that allows training one model per partition when each partition contains more than one unique time series. The default value is False.
1047
1048
1048
1049
The following sample provides a configuration template:
0 commit comments