Class: Aws::ForecastService::Types::ErrorMetric

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

Overview

Provides detailed error metrics to evaluate the performance of a predictor. This object is part of the Metrics object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#forecast_typeString

The Forecast type used to compute WAPE, MAPE, MASE, and RMSE.

Returns:

  • (String)


3841
3842
3843
3844
3845
3846
3847
3848
3849
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3841

class ErrorMetric < Struct.new(
  :forecast_type,
  :wape,
  :rmse,
  :mase,
  :mape)
  SENSITIVE = []
  include Aws::Structure
end

#mapeFloat

The Mean Absolute Percentage Error (MAPE)

Returns:

  • (Float)


3841
3842
3843
3844
3845
3846
3847
3848
3849
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3841

class ErrorMetric < Struct.new(
  :forecast_type,
  :wape,
  :rmse,
  :mase,
  :mape)
  SENSITIVE = []
  include Aws::Structure
end

#maseFloat

The Mean Absolute Scaled Error (MASE)

Returns:

  • (Float)


3841
3842
3843
3844
3845
3846
3847
3848
3849
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3841

class ErrorMetric < Struct.new(
  :forecast_type,
  :wape,
  :rmse,
  :mase,
  :mape)
  SENSITIVE = []
  include Aws::Structure
end

#rmseFloat

The root-mean-square error (RMSE).

Returns:

  • (Float)


3841
3842
3843
3844
3845
3846
3847
3848
3849
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3841

class ErrorMetric < Struct.new(
  :forecast_type,
  :wape,
  :rmse,
  :mase,
  :mape)
  SENSITIVE = []
  include Aws::Structure
end

#wapeFloat

The weighted absolute percentage error (WAPE).

Returns:

  • (Float)


3841
3842
3843
3844
3845
3846
3847
3848
3849
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 3841

class ErrorMetric < Struct.new(
  :forecast_type,
  :wape,
  :rmse,
  :mase,
  :mape)
  SENSITIVE = []
  include Aws::Structure
end