predictors
Creates, updates, deletes, gets or lists a predictors resource.
Overview
| Name | predictors |
| Type | Resource |
| Id | aws.forecast.predictors |
Fields
The following fields are returned by SELECT queries:
- describe_predictor
- list_predictors
| Name | Datatype | Description |
|---|---|---|
algorithm_arn | string | The Amazon Resource Name (ARN) of the algorithm used for model training. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
auto_ml_algorithm_arns | array | When PerformAutoML is specified, the ARN of the chosen algorithm. |
auto_ml_override_strategy | string | The LatencyOptimized AutoML override strategy is only available in private beta. Contact Amazon Web Services Support or your account manager to learn more about access privileges. The AutoML strategy used to train the predictor. Unless LatencyOptimized is specified, the AutoML strategy optimizes predictor accuracy. This parameter is only valid for predictors trained using AutoML. (LatencyOptimized, AccuracyOptimized) |
creation_time | string (date-time) | When the model training task was created. |
dataset_import_job_arns | array | An array of the ARNs of the dataset import jobs used to import training data for the predictor. |
encryption_config | object | An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. You can specify this optional object in the CreateDataset and CreatePredictor requests. |
estimated_time_remaining_in_minutes | integer (int64) | The estimated time remaining in minutes for the predictor training job to complete. |
evaluation_parameters | object | Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast evaluates a predictor by splitting a dataset into training data and testing data. The evaluation parameters define how to perform the split and the number of iterations. |
featurization_config | object | The featurization configuration. |
forecast_horizon | integer | The number of time-steps of the forecast. The forecast horizon is also called the prediction length. |
forecast_types | array | The forecast types used during predictor training. Default value is ["0.1","0.5","0.9"] |
hpo_config | object | The hyperparameter override values for the algorithm. |
input_data_config | object | Describes the dataset group that contains the data to use to train the predictor. |
is_auto_predictor | boolean | Whether the predictor was created with CreateAutoPredictor. |
last_modification_time | string (date-time) | The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed. |
message | string | If an error occurred, an informational message about the error. |
optimization_metric | string | The accuracy metric used to optimize the predictor. (WAPE, RMSE, AverageWeightedQuantileLoss, MASE, MAPE) |
perform_auto_ml | boolean | Whether the predictor is set to perform AutoML. |
perform_hpo | boolean | Whether the predictor is set to perform hyperparameter optimization (HPO). |
predictor_arn | string | The ARN of the predictor. (pattern: <code>^[a-zA-Z][a-zA-Z0-9_]*</code>) |
predictor_execution_details | object | Details on the the status and results of the backtests performed to evaluate the accuracy of the predictor. You specify the number of backtests to perform when you call the operation. |
predictor_name | string | The name of the predictor. (pattern: <code>^[a-zA-Z][a-zA-Z0-9_]*</code>) |
status | string | The status of the predictor. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED CREATE_STOPPING, CREATE_STOPPED The Status of the predictor must be ACTIVE before you can use the predictor to create a forecast. |
training_parameters | object | The default training parameters or overrides selected during model training. When running AutoML or choosing HPO with CNN-QR or DeepAR+, the optimized values for the chosen hyperparameters are returned. For more information, see aws-forecast-choosing-recipes. |
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | When the model training task was created. |
dataset_group_arn | string | The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
is_auto_predictor | boolean | Whether AutoPredictor was used to create the predictor. |
last_modification_time | string (date-time) | The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed. |
message | string | If an error occurred, an informational message about the error. |
predictor_arn | string | The ARN of the predictor. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
predictor_name | string | The name of the predictor. (pattern: <code>^[a-zA-Z][a-zA-Z0-9_]*</code>) |
reference_predictor_summary | object | A summary of the reference predictor used if the predictor was retrained or upgraded. |
status | string | The status of the predictor. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED CREATE_STOPPING, CREATE_STOPPED The Status of the predictor must be ACTIVE before you can use the predictor to create a forecast. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_predictor | select | region | This operation is only valid for legacy predictors created with CreatePredictor. If you are not using a legacy predictor, use DescribeAutoPredictor. Describes a predictor created using the CreatePredictor operation. In addition to listing the properties provided in the CreatePredictor request, this operation lists the following properties: DatasetImportJobArns - The dataset import jobs used to import training data. AutoMLAlgorithmArns - If AutoML is performed, the algorithms that were evaluated. CreationTime LastModificationTime Status Message - If an error occurred, information about the error. | |
list_predictors | select | region | Returns a list of predictors created using the CreateAutoPredictor or CreatePredictor operations. For each predictor, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the ARN with the DescribeAutoPredictor and DescribePredictor operations. You can filter the list using an array of Filter objects. | |
create_predictor | insert | region, PredictorName, ForecastHorizon, InputDataConfig, FeaturizationConfig | This operation creates a legacy predictor that does not include all the predictor functionalities provided by Amazon Forecast. To create a predictor that is compatible with all aspects of Forecast, use CreateAutoPredictor. Creates an Amazon Forecast predictor. In the request, provide a dataset group and either specify an algorithm or let Amazon Forecast choose an algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters. Amazon Forecast uses the algorithm to train a predictor using the latest version of the datasets in the specified dataset group. You can then generate a forecast using the CreateForecast operation. To see the evaluation metrics, use the GetAccuracyMetrics operation. You can specify a featurization configuration to fill and aggregate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig. For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency. TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups. By default, predictors are trained and evaluated at the 0.1 (P10), 0.5 (P50), and 0.9 (P90) quantiles. You can choose custom forecast types to train and evaluate your predictor by setting the ForecastTypes. AutoML If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function, set PerformAutoML to true. The objective function is defined as the mean of the weighted losses over the forecast types. By default, these are the p10, p50, and p90 quantile losses. For more information, see EvaluationResult. When AutoML is enabled, the following properties are disallowed: AlgorithmArn HPOConfig PerformHPO TrainingParameters To get a list of all of your predictors, use the ListPredictors operation. Before you can use the predictor to create a forecast, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation. | |
delete_predictor | delete | region | Deletes a predictor created using the DescribePredictor or CreatePredictor operations. You can delete only predictor that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribePredictor operation. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_predictor
- list_predictors
This operation is only valid for legacy predictors created with CreatePredictor. If you are not using a legacy predictor, use DescribeAutoPredictor. Describes a predictor created using the CreatePredictor operation. In addition to listing the properties provided in the CreatePredictor request, this operation lists the following properties: DatasetImportJobArns - The dataset import jobs used to import training data. AutoMLAlgorithmArns - If AutoML is performed, the algorithms that were evaluated. CreationTime LastModificationTime Status Message - If an error occurred, information about the error.
SELECT
algorithm_arn,
auto_ml_algorithm_arns,
auto_ml_override_strategy,
creation_time,
dataset_import_job_arns,
encryption_config,
estimated_time_remaining_in_minutes,
evaluation_parameters,
featurization_config,
forecast_horizon,
forecast_types,
hpo_config,
input_data_config,
is_auto_predictor,
last_modification_time,
message,
optimization_metric,
perform_auto_ml,
perform_hpo,
predictor_arn,
predictor_execution_details,
predictor_name,
status,
training_parameters
FROM aws.forecast.predictors
WHERE region = '{{ region }}' -- required
;
Returns a list of predictors created using the CreateAutoPredictor or CreatePredictor operations. For each predictor, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the ARN with the DescribeAutoPredictor and DescribePredictor operations. You can filter the list using an array of Filter objects.
SELECT
creation_time,
dataset_group_arn,
is_auto_predictor,
last_modification_time,
message,
predictor_arn,
predictor_name,
reference_predictor_summary,
status
FROM aws.forecast.predictors
WHERE region = '{{ region }}' -- required
;
INSERT examples
- create_predictor
- Manifest
This operation creates a legacy predictor that does not include all the predictor functionalities provided by Amazon Forecast. To create a predictor that is compatible with all aspects of Forecast, use CreateAutoPredictor. Creates an Amazon Forecast predictor. In the request, provide a dataset group and either specify an algorithm or let Amazon Forecast choose an algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters. Amazon Forecast uses the algorithm to train a predictor using the latest version of the datasets in the specified dataset group. You can then generate a forecast using the CreateForecast operation. To see the evaluation metrics, use the GetAccuracyMetrics operation. You can specify a featurization configuration to fill and aggregate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig. For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency. TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups. By default, predictors are trained and evaluated at the 0.1 (P10), 0.5 (P50), and 0.9 (P90) quantiles. You can choose custom forecast types to train and evaluate your predictor by setting the ForecastTypes. AutoML If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function, set PerformAutoML to true. The objective function is defined as the mean of the weighted losses over the forecast types. By default, these are the p10, p50, and p90 quantile losses. For more information, see EvaluationResult. When AutoML is enabled, the following properties are disallowed: AlgorithmArn HPOConfig PerformHPO TrainingParameters To get a list of all of your predictors, use the ListPredictors operation. Before you can use the predictor to create a forecast, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.
INSERT INTO aws.forecast.predictors (
PredictorName,
AlgorithmArn,
ForecastHorizon,
ForecastTypes,
PerformAutoML,
AutoMLOverrideStrategy,
PerformHPO,
TrainingParameters,
EvaluationParameters,
HPOConfig,
InputDataConfig,
FeaturizationConfig,
EncryptionConfig,
Tags,
OptimizationMetric,
region
)
SELECT
'{{ PredictorName }}' /* required */,
'{{ AlgorithmArn }}',
{{ ForecastHorizon }} /* required */,
'{{ ForecastTypes }}',
{{ PerformAutoML }},
'{{ AutoMLOverrideStrategy }}',
{{ PerformHPO }},
'{{ TrainingParameters }}',
'{{ EvaluationParameters }}',
'{{ HPOConfig }}',
'{{ InputDataConfig }}' /* required */,
'{{ FeaturizationConfig }}' /* required */,
'{{ EncryptionConfig }}',
'{{ Tags }}',
'{{ OptimizationMetric }}',
'{{ region }}'
RETURNING
predictor_arn
;
# Description fields are for documentation purposes
- name: predictors
props:
- name: region
value: "{{ region }}"
description: Required parameter for the predictors resource.
- name: PredictorName
value: "{{ PredictorName }}"
description: |
A name for the predictor.
- name: AlgorithmArn
value: "{{ AlgorithmArn }}"
description: |
The Amazon Resource Name (ARN) of the algorithm to use for model training. Required if PerformAutoML is not set to true. Supported algorithms: arn:aws:forecast:::algorithm/ARIMA arn:aws:forecast:::algorithm/CNN-QR arn:aws:forecast:::algorithm/Deep_AR_Plus arn:aws:forecast:::algorithm/ETS arn:aws:forecast:::algorithm/NPTS arn:aws:forecast:::algorithm/Prophet
- name: ForecastHorizon
value: {{ ForecastHorizon }}
description: |
Specifies the number of time-steps that the model is trained to predict. The forecast horizon is also called the prediction length. For example, if you configure a dataset for daily data collection (using the DataFrequency parameter of the CreateDataset operation) and set the forecast horizon to 10, the model returns predictions for 10 days. The maximum forecast horizon is the lesser of 500 time-steps or 1/3 of the TARGET_TIME_SERIES dataset length.
- name: ForecastTypes
value:
- "{{ ForecastTypes }}"
description: |
Specifies the forecast types used to train a predictor. You can specify up to five forecast types. Forecast types can be quantiles from 0.01 to 0.99, by increments of 0.01 or higher. You can also specify the mean forecast with mean. The default value is ["0.10", "0.50", "0.9"].
- name: PerformAutoML
value: {{ PerformAutoML }}
description: |
Whether to perform AutoML. When Amazon Forecast performs AutoML, it evaluates the algorithms it provides and chooses the best algorithm and configuration for your training dataset. The default value is false. In this case, you are required to specify an algorithm. Set PerformAutoML to true to have Amazon Forecast perform AutoML. This is a good option if you aren't sure which algorithm is suitable for your training data. In this case, PerformHPO must be false.
- name: AutoMLOverrideStrategy
value: "{{ AutoMLOverrideStrategy }}"
description: |
The LatencyOptimized AutoML override strategy is only available in private beta. Contact Amazon Web Services Support or your account manager to learn more about access privileges. Used to overide the default AutoML strategy, which is to optimize predictor accuracy. To apply an AutoML strategy that minimizes training time, use LatencyOptimized. This parameter is only valid for predictors trained using AutoML.
valid_values: ['LatencyOptimized', 'AccuracyOptimized']
- name: PerformHPO
value: {{ PerformHPO }}
description: |
Whether to perform hyperparameter optimization (HPO). HPO finds optimal hyperparameter values for your training data. The process of performing HPO is known as running a hyperparameter tuning job. The default value is false. In this case, Amazon Forecast uses default hyperparameter values from the chosen algorithm. To override the default values, set PerformHPO to true and, optionally, supply the HyperParameterTuningJobConfig object. The tuning job specifies a metric to optimize, which hyperparameters participate in tuning, and the valid range for each tunable hyperparameter. In this case, you are required to specify an algorithm and PerformAutoML must be false. The following algorithms support HPO: DeepAR+ CNN-QR
- name: TrainingParameters
value: "{{ TrainingParameters }}"
description: |
The hyperparameters to override for model training. The hyperparameters that you can override are listed in the individual algorithms. For the list of supported algorithms, see aws-forecast-choosing-recipes.
- name: EvaluationParameters
description: |
Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast evaluates a predictor by splitting a dataset into training data and testing data. The evaluation parameters define how to perform the split and the number of iterations.
value:
NumberOfBacktestWindows: {{ NumberOfBacktestWindows }}
BackTestWindowOffset: {{ BackTestWindowOffset }}
- name: HPOConfig
description: |
Provides hyperparameter override values for the algorithm. If you don't provide this parameter, Amazon Forecast uses default values. The individual algorithms specify which hyperparameters support hyperparameter optimization (HPO). For more information, see aws-forecast-choosing-recipes. If you included the HPOConfig object, you must set PerformHPO to true.
value:
ParameterRanges:
CategoricalParameterRanges:
- Name: "{{ Name }}"
Values: "{{ Values }}"
ContinuousParameterRanges:
- Name: "{{ Name }}"
MaxValue: {{ MaxValue }}
MinValue: {{ MinValue }}
ScalingType: "{{ ScalingType }}"
IntegerParameterRanges:
- Name: "{{ Name }}"
MaxValue: {{ MaxValue }}
MinValue: {{ MinValue }}
ScalingType: "{{ ScalingType }}"
- name: InputDataConfig
description: |
Describes the dataset group that contains the data to use to train the predictor.
value:
DatasetGroupArn: "{{ DatasetGroupArn }}"
SupplementaryFeatures:
- Name: "{{ Name }}"
Value: "{{ Value }}"
- name: FeaturizationConfig
description: |
The featurization configuration.
value:
ForecastFrequency: "{{ ForecastFrequency }}"
ForecastDimensions:
- "{{ ForecastDimensions }}"
Featurizations:
- AttributeName: "{{ AttributeName }}"
FeaturizationPipeline: "{{ FeaturizationPipeline }}"
- name: EncryptionConfig
description: |
An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. You can specify this optional object in the CreateDataset and CreatePredictor requests.
value:
RoleArn: "{{ RoleArn }}"
KMSKeyArn: "{{ KMSKeyArn }}"
- name: Tags
description: |
The optional metadata that you apply to the predictor to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags: Maximum number of tags per resource - 50. For each resource, each tag key must be unique, and each tag key can have only one value. Maximum key length - 128 Unicode characters in UTF-8. Maximum value length - 256 Unicode characters in UTF-8. If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case sensitive. Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
value:
- Key: "{{ Key }}"
Value: "{{ Value }}"
- name: OptimizationMetric
value: "{{ OptimizationMetric }}"
description: |
The accuracy metric used to optimize the predictor.
valid_values: ['WAPE', 'RMSE', 'AverageWeightedQuantileLoss', 'MASE', 'MAPE']
DELETE examples
- delete_predictor
Deletes a predictor created using the DescribePredictor or CreatePredictor operations. You can delete only predictor that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribePredictor operation.
DELETE FROM aws.forecast.predictors
WHERE region = '{{ region }}' --required
;