Class: Aws::ForecastService::Types::WindowSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::WindowSummary
- 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
-
#evaluation_type ⇒ String
The type of evaluation.
-
#item_count ⇒ Integer
The number of data points within the window.
-
#metrics ⇒ Types::Metrics
Provides metrics used to evaluate the performance of a predictor.
-
#test_window_end ⇒ Time
The timestamp that defines the end of the window.
-
#test_window_start ⇒ Time
The timestamp that defines the start of the window.
Instance Attribute Details
#evaluation_type ⇒ String
The type of evaluation.
-
‘SUMMARY` - The average metrics across all windows.
-
‘COMPUTED` - The metrics for the specified window.
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_count ⇒ Integer
The number of data points within the window.
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 |
#metrics ⇒ Types::Metrics
Provides metrics used to evaluate the performance of a predictor.
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_end ⇒ Time
The timestamp that defines the end of the window.
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_start ⇒ Time
The timestamp that defines the start of the window.
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 |