Class: Aws::ForecastService::Types::WindowSummary

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-forecastservice/types.rb

Overview

The metrics for a time range within the evaluation portion of a dataset. This object is part of the EvaluationResult object.

The ‘TestWindowStart` and `TestWindowEnd` parameters are determined by the `BackTestWindowOffset` parameter of the EvaluationParameters object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#evaluation_typeString

The type of evaluation.

  • ‘SUMMARY` - The average metrics across all windows.

  • ‘COMPUTED` - The metrics for the specified window.

Returns:

  • (String)


7208
7209
7210
7211
7212
7213
7214
7215
7216
# File 'lib/aws-sdk-forecastservice/types.rb', line 7208

class WindowSummary < Struct.new(
  :test_window_start,
  :test_window_end,
  :item_count,
  :evaluation_type,
  :metrics)
  SENSITIVE = []
  include Aws::Structure
end

#item_countInteger

The number of data points within the window.

Returns:

  • (Integer)


7208
7209
7210
7211
7212
7213
7214
7215
7216
# File 'lib/aws-sdk-forecastservice/types.rb', line 7208

class WindowSummary < Struct.new(
  :test_window_start,
  :test_window_end,
  :item_count,
  :evaluation_type,
  :metrics)
  SENSITIVE = []
  include Aws::Structure
end

#metricsTypes::Metrics

Provides metrics used to evaluate the performance of a predictor.

Returns:



7208
7209
7210
7211
7212
7213
7214
7215
7216
# File 'lib/aws-sdk-forecastservice/types.rb', line 7208

class WindowSummary < Struct.new(
  :test_window_start,
  :test_window_end,
  :item_count,
  :evaluation_type,
  :metrics)
  SENSITIVE = []
  include Aws::Structure
end

#test_window_endTime

The timestamp that defines the end of the window.

Returns:

  • (Time)


7208
7209
7210
7211
7212
7213
7214
7215
7216
# File 'lib/aws-sdk-forecastservice/types.rb', line 7208

class WindowSummary < Struct.new(
  :test_window_start,
  :test_window_end,
  :item_count,
  :evaluation_type,
  :metrics)
  SENSITIVE = []
  include Aws::Structure
end

#test_window_startTime

The timestamp that defines the start of the window.

Returns:

  • (Time)


7208
7209
7210
7211
7212
7213
7214
7215
7216
# File 'lib/aws-sdk-forecastservice/types.rb', line 7208

class WindowSummary < Struct.new(
  :test_window_start,
  :test_window_end,
  :item_count,
  :evaluation_type,
  :metrics)
  SENSITIVE = []
  include Aws::Structure
end