Class: Aws::ForecastService::Types::ErrorMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::ErrorMetric
- 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
-
#forecast_type ⇒ String
The Forecast type used to compute WAPE, MAPE, MASE, and RMSE.
-
#mape ⇒ Float
The Mean Absolute Percentage Error (MAPE).
-
#mase ⇒ Float
The Mean Absolute Scaled Error (MASE).
-
#rmse ⇒ Float
The root-mean-square error (RMSE).
-
#wape ⇒ Float
The weighted absolute percentage error (WAPE).
Instance Attribute Details
#forecast_type ⇒ String
The Forecast type used to compute WAPE, MAPE, MASE, and RMSE.
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 |
#mape ⇒ Float
The Mean Absolute Percentage Error (MAPE)
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 |
#mase ⇒ Float
The Mean Absolute Scaled Error (MASE)
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 |
#rmse ⇒ Float
The root-mean-square error (RMSE).
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 |
#wape ⇒ Float
The weighted absolute percentage error (WAPE).
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 |