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

Model metadata.

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

Fields

class_weighted_accuracy: Option<String>

Estimated accuracy of model taking utility weights into account (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).

number_instances: Option<String>

Number of valid data instances used in the trained model.

number_labels: Option<String>

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more