public static interface Metrics.Builder extends SdkPojo, CopyableBuilder<Metrics.Builder,Metrics>
| Modifier and Type | Method and Description |
|---|---|
Metrics.Builder |
errorMetrics(Collection<ErrorMetric> errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average
percentage error (WAPE).
|
Metrics.Builder |
errorMetrics(Consumer<ErrorMetric.Builder>... errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average
percentage error (WAPE).
|
Metrics.Builder |
errorMetrics(ErrorMetric... errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average
percentage error (WAPE).
|
Metrics.Builder |
rmse(Double rmse)
The root-mean-square error (RMSE).
|
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, buildMetrics.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 that creates an instance of theList.Builder avoiding the
need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately
and its result is passed to #weightedQuantileLosses(List) .weightedQuantileLosses - a consumer that will call methods on List.Builder #weightedQuantileLosses(List) Metrics.Builder errorMetrics(Collection<ErrorMetric> errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average percentage error (WAPE).
errorMetrics - Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average
percentage error (WAPE).Metrics.Builder errorMetrics(ErrorMetric... errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average percentage error (WAPE).
errorMetrics - Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average
percentage error (WAPE).Metrics.Builder errorMetrics(Consumer<ErrorMetric.Builder>... errorMetrics)
Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average percentage error (WAPE).
This is a convenience that creates an instance of theList.Builder avoiding the need to
create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and its
result is passed to #errorMetrics(List) .errorMetrics - a consumer that will call methods on List.Builder #errorMetrics(List) Copyright © 2020. All rights reserved.