Struct google_prediction1d6::AnalyzeModelDescription [] [src]

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

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).

A list of the confusion matrix row totals.

Basic information about the model.

Trait Implementations

impl Debug for AnalyzeModelDescription
[src]

Formats the value using the given formatter.

impl Clone for AnalyzeModelDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AnalyzeModelDescription
[src]

Returns the "default value" for a type. Read more

impl NestedType for AnalyzeModelDescription
[src]

impl Part for AnalyzeModelDescription
[src]