Class: Aws::ForecastService::Types::PredictorExecutionDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::PredictorExecutionDetails
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Contains details on the backtests performed to evaluate the accuracy of the predictor. The tests are returned in descending order of accuracy, with the most accurate backtest appearing first. You specify the number of backtests to perform when you call the operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#predictor_executions ⇒ Array<Types::PredictorExecution>
An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm.
Instance Attribute Details
#predictor_executions ⇒ Array<Types::PredictorExecution>
An array of the backtests performed to evaluate the accuracy of the
predictor against a particular algorithm. The
NumberOfBacktestWindows
from the object determines the number of
windows in the array.
5946 5947 5948 5949 5950 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5946 class PredictorExecutionDetails < Struct.new( :predictor_executions) SENSITIVE = [] include Aws::Structure end |