Class: Aws::ForecastService::Types::EvaluationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::EvaluationResult
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
The results of evaluating an algorithm. Returned as part of the GetAccuracyMetrics response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#algorithm_arn ⇒ String
The Amazon Resource Name (ARN) of the algorithm that was evaluated.
-
#test_windows ⇒ Array<Types::WindowSummary>
The array of test windows used for evaluating the algorithm.
Instance Attribute Details
#algorithm_arn ⇒ String
The Amazon Resource Name (ARN) of the algorithm that was evaluated.
3898 3899 3900 3901 3902 3903 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3898 class EvaluationResult < Struct.new( :algorithm_arn, :test_windows) SENSITIVE = [] include Aws::Structure end |
#test_windows ⇒ Array<Types::WindowSummary>
The array of test windows used for evaluating the algorithm. The
NumberOfBacktestWindows
from the EvaluationParameters object
determines the number of windows in the array.
3898 3899 3900 3901 3902 3903 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3898 class EvaluationResult < Struct.new( :algorithm_arn, :test_windows) SENSITIVE = [] include Aws::Structure end |