[][src]Struct google_prediction1d6::Insert2ModelInfo

pub struct Insert2ModelInfo {
    pub number_instances: Option<String>,
    pub class_weighted_accuracy: Option<String>,
    pub number_labels: Option<String>,
    pub classification_accuracy: Option<String>,
    pub mean_squared_error: Option<String>,
    pub model_type: Option<String>,
}

Model metadata.

This type is not used in any activity, and only used as part of another schema.

Fields

number_instances: Option<String>

Number of valid data instances used in the trained model.

class_weighted_accuracy: Option<String>

Estimated accuracy of model taking utility weights into account (Categorical models only).

number_labels: Option<String>

Number of class labels in the trained model (Categorical models only).

classification_accuracy: Option<String>

A number between 0.0 and 1.0, where 1.0 is 100% accurate. This is an estimate, based on the amount and quality of the training data, of the estimated prediction accuracy. You can use this is a guide to decide whether the results are accurate enough for your needs. This estimate will be more reliable if your real input data is similar to your training data (Categorical models only).

mean_squared_error: Option<String>

An estimated mean squared error. The can be used to measure the quality of the predicted model (Regression models only).

model_type: Option<String>

Type of predictive model (CLASSIFICATION or REGRESSION).

Trait Implementations

impl Part for Insert2ModelInfo[src]

impl NestedType for Insert2ModelInfo[src]

impl Default for Insert2ModelInfo[src]

impl Clone for Insert2ModelInfo[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Insert2ModelInfo[src]

impl Serialize for Insert2ModelInfo[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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