[][src]Struct rusoto_forecast::WeightedQuantileLoss

pub struct WeightedQuantileLoss {
    pub loss_value: Option<f64>,
    pub quantile: Option<f64>,
}

The weighted loss value for a quantile. This object is part of the Metrics object.

Fields

loss_value: Option<f64>

The difference between the predicted value and the actual value over the quantile, weighted (normalized) by dividing by the sum over all quantiles.

quantile: Option<f64>

The quantile. Quantiles divide a probability distribution into regions of equal probability. For example, if the distribution was divided into 5 regions of equal probability, the quantiles would be 0.2, 0.4, 0.6, and 0.8.

Trait Implementations

impl Clone for WeightedQuantileLoss[src]

impl Debug for WeightedQuantileLoss[src]

impl Default for WeightedQuantileLoss[src]

impl<'de> Deserialize<'de> for WeightedQuantileLoss[src]

impl PartialEq<WeightedQuantileLoss> for WeightedQuantileLoss[src]

impl StructuralPartialEq for WeightedQuantileLoss[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.