You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ForecastService::Types::Featurization

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Featurization as input to an Aws::Client method, you can use a vanilla Hash:

{
  attribute_name: "Name", # required
  featurization_pipeline: [
    {
      featurization_method_name: "filling", # required, accepts filling
      featurization_method_parameters: {
        "ParameterKey" => "ParameterValue",
      },
    },
  ],
}

Provides featurization (transformation) information for a dataset field. This object is part of the FeaturizationConfig object.

For example:

{

"AttributeName": "demand",

FeaturizationPipeline [ {

"FeaturizationMethodName": "filling",

"FeaturizationMethodParameters": {"aggregation": "avg", "backfill": "nan"}

} ]

}

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The name of the schema attribute that specifies the data field to be featurized. Amazon Forecast supports the target field of the TARGET_TIME_SERIES and the RELATED_TIME_SERIES datasets. For example, for the RETAIL domain, the target is demand, and for the CUSTOM domain, the target is target_value. For more information, see howitworks-missing-values.

Returns:

  • (String)

    The name of the schema attribute that specifies the data field to be featurized.

#featurization_pipelineArray<Types::FeaturizationMethod>

An array of one FeaturizationMethod object that specifies the feature transformation method.

Returns:

  • (Array<Types::FeaturizationMethod>)

    An array of one FeaturizationMethod object that specifies the feature transformation method.