Class: Aws::ForecastService::Types::Metrics

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-forecastservice/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

Instance Attribute Details

#average_weighted_quantile_lossFloat

The average value of all weighted quantile losses.

Returns:

  • (Float)


5628
5629
5630
5631
5632
5633
5634
5635
# File 'gems/aws-sdk-forecastservice/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_metricsArray<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).

Returns:



5628
5629
5630
5631
5632
5633
5634
5635
# File 'gems/aws-sdk-forecastservice/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

#rmseFloat

The root-mean-square error (RMSE).

Returns:

  • (Float)


5628
5629
5630
5631
5632
5633
5634
5635
# File 'gems/aws-sdk-forecastservice/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_lossesArray<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.

Returns:



5628
5629
5630
5631
5632
5633
5634
5635
# File 'gems/aws-sdk-forecastservice/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