[][src]Struct google_prediction1d6::AnalyzeModelDescription

pub struct AnalyzeModelDescription {
    pub confusion_matrix: Option<HashMap<String, HashMap<String, String>>>,
    pub confusion_matrix_row_totals: Option<HashMap<String, String>>,
    pub modelinfo: Option<Insert2>,
}

Description of the model.

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

Fields

confusion_matrix: Option<HashMap<String, HashMap<String, String>>>

An output confusion matrix. This shows an estimate for how this model will do in predictions. This is first indexed by the true class label. For each true class label, this provides a pair {predicted_label, count}, where count is the estimated number of times the model will predict the predicted label given the true label. Will not output if more then 100 classes (Categorical models only).

confusion_matrix_row_totals: Option<HashMap<String, String>>

A list of the confusion matrix row totals.

modelinfo: Option<Insert2>

Basic information about the model.

Trait Implementations

impl Part for AnalyzeModelDescription[src]

impl NestedType for AnalyzeModelDescription[src]

impl Default for AnalyzeModelDescription[src]

impl Clone for AnalyzeModelDescription[src]

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

Performs copy-assignment from source. Read more

impl Debug for AnalyzeModelDescription[src]

impl Serialize for AnalyzeModelDescription[src]

impl<'de> Deserialize<'de> for AnalyzeModelDescription[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]