[][src]Struct gcp_client::google::cloud::automl::v1beta1::RegressionEvaluationMetrics

pub struct RegressionEvaluationMetrics {
    pub root_mean_squared_error: f32,
    pub mean_absolute_error: f32,
    pub mean_absolute_percentage_error: f32,
    pub r_squared: f32,
    pub root_mean_squared_log_error: f32,
}

Metrics for regression problems.

Fields

root_mean_squared_error: f32

Output only. Root Mean Squared Error (RMSE).

mean_absolute_error: f32

Output only. Mean Absolute Error (MAE).

mean_absolute_percentage_error: f32

Output only. Mean absolute percentage error. Only set if all ground truth values are are positive.

r_squared: f32

Output only. R squared.

root_mean_squared_log_error: f32

Output only. Root mean squared log error.

Trait Implementations

impl Clone for RegressionEvaluationMetrics[src]

impl Debug for RegressionEvaluationMetrics[src]

impl Default for RegressionEvaluationMetrics[src]

impl Message for RegressionEvaluationMetrics[src]

impl PartialEq<RegressionEvaluationMetrics> for RegressionEvaluationMetrics[src]

impl StructuralPartialEq for RegressionEvaluationMetrics[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]