Class: Aws::ForecastService::Types::Metrics
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::Metrics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastservice/types.rb
Overview
Provides metrics that are used to evaluate the performance of a predictor. This object is part of the WindowSummary object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average_weighted_quantile_loss ⇒ Float
The average value of all weighted quantile losses.
-
#error_metrics ⇒ Array<Types::ErrorMetric>
Provides detailed error metrics for each forecast type.
-
#rmse ⇒ Float
The root-mean-square error (RMSE).
-
#weighted_quantile_losses ⇒ Array<Types::WeightedQuantileLoss>
An array of weighted quantile losses.
Instance Attribute Details
#average_weighted_quantile_loss ⇒ Float
The average value of all weighted quantile losses.
5628 5629 5630 5631 5632 5633 5634 5635 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 5628 class Metrics < Struct.new( :rmse, :weighted_quantile_losses, :error_metrics, :average_weighted_quantile_loss) SENSITIVE = [] include Aws::Structure end |
#error_metrics ⇒ Array<Types::ErrorMetric>
Provides detailed error metrics for each forecast type. Metrics include root-mean square-error (RMSE), mean absolute percentage error (MAPE), mean absolute scaled error (MASE), and weighted average percentage error (WAPE).
5628 5629 5630 5631 5632 5633 5634 5635 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 5628 class Metrics < Struct.new( :rmse, :weighted_quantile_losses, :error_metrics, :average_weighted_quantile_loss) SENSITIVE = [] include Aws::Structure end |
#rmse ⇒ Float
The root-mean-square error (RMSE).
5628 5629 5630 5631 5632 5633 5634 5635 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 5628 class Metrics < Struct.new( :rmse, :weighted_quantile_losses, :error_metrics, :average_weighted_quantile_loss) SENSITIVE = [] include Aws::Structure end |
#weighted_quantile_losses ⇒ Array<Types::WeightedQuantileLoss>
An array of weighted quantile losses. Quantiles divide a probability distribution into regions of equal probability. The distribution in this case is the loss function.
5628 5629 5630 5631 5632 5633 5634 5635 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 5628 class Metrics < Struct.new( :rmse, :weighted_quantile_losses, :error_metrics, :average_weighted_quantile_loss) SENSITIVE = [] include Aws::Structure end |