public static interface Metrics.Builder extends SdkPojo, CopyableBuilder<Metrics.Builder,Metrics>
| Modifier and Type | Method and Description |
|---|---|
Metrics.Builder |
averageWeightedQuantileLoss(Double averageWeightedQuantileLoss)
The average value of all weighted quantile losses.
|
Metrics.Builder |
errorMetrics(Collection<ErrorMetric> errorMetrics)
Provides detailed error metrics for each forecast type.
|
Metrics.Builder |
errorMetrics(Consumer<ErrorMetric.Builder>... errorMetrics)
Provides detailed error metrics for each forecast type.
|
Metrics.Builder |
errorMetrics(ErrorMetric... errorMetrics)
Provides detailed error metrics for each forecast type.
|
Metrics.Builder |
rmse(Double rmse)
Deprecated.
This property is deprecated, please refer to ErrorMetrics for both RMSE and WAPE
|
Metrics.Builder |
weightedQuantileLosses(Collection<WeightedQuantileLoss> weightedQuantileLosses)
An array of weighted quantile losses.
|
Metrics.Builder |
weightedQuantileLosses(Consumer<WeightedQuantileLoss.Builder>... weightedQuantileLosses)
An array of weighted quantile losses.
|
Metrics.Builder |
weightedQuantileLosses(WeightedQuantileLoss... weightedQuantileLosses)
An array of weighted quantile losses.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, build@Deprecated Metrics.Builder rmse(Double rmse)
The root-mean-square error (RMSE).
rmse - The root-mean-square error (RMSE).Metrics.Builder weightedQuantileLosses(Collection<WeightedQuantileLoss> weightedQuantileLosses)
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.
weightedQuantileLosses - 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.Metrics.Builder weightedQuantileLosses(WeightedQuantileLoss... weightedQuantileLosses)
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.
weightedQuantileLosses - 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.Metrics.Builder weightedQuantileLosses(Consumer<WeightedQuantileLoss.Builder>... weightedQuantileLosses)
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.
This is a convenience method that creates an instance of theWeightedQuantileLoss.Builder avoiding the need to
create one manually via WeightedQuantileLoss.builder()
.
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #weightedQuantileLosses(List.
weightedQuantileLosses - a consumer that will call methods on
WeightedQuantileLoss.Builder#weightedQuantileLosses(java.util.Collection) Metrics.Builder errorMetrics(Collection<ErrorMetric> errorMetrics)
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).
errorMetrics - 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).Metrics.Builder errorMetrics(ErrorMetric... errorMetrics)
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).
errorMetrics - 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).Metrics.Builder errorMetrics(Consumer<ErrorMetric.Builder>... errorMetrics)
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).
This is a convenience method that creates an instance of theErrorMetric.Builder avoiding the need to create one
manually via ErrorMetric.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and
its result is passed to #errorMetrics(List.
errorMetrics - a consumer that will call methods on
ErrorMetric.Builder#errorMetrics(java.util.Collection) Metrics.Builder averageWeightedQuantileLoss(Double averageWeightedQuantileLoss)
The average value of all weighted quantile losses.
averageWeightedQuantileLoss - The average value of all weighted quantile losses.Copyright © 2023. All rights reserved.