Class: Aws::ForecastService::Types::EvaluationResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#algorithm_arnString

The Amazon Resource Name (ARN) of the algorithm that was evaluated.

Returns:

  • (String)


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_windowsArray<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.

Returns:



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