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

pub struct TablesModelColumnInfo {
    pub column_spec_name: String,
    pub column_display_name: String,
    pub feature_importance: f32,
}

An information specific to given column and Tables Model, in context of the Model and the predictions created by it.

Fields

column_spec_name: String

Output only. The name of the ColumnSpec describing the column. Not populated when this proto is outputted to BigQuery.

column_display_name: String

Output only. The display name of the column (same as the display_name of its ColumnSpec).

feature_importance: f32

Output only. When given as part of a Model (always populated): Measurement of how much model predictions correctness on the TEST data depend on values in this column. A value between 0 and 1, higher means higher influence. These values are normalized - for all input feature columns of a given model they add to 1.

When given back by Predict (populated iff [feature_importance param][google.cloud.automl.v1beta1.PredictRequest.params] is set) or Batch Predict (populated iff [feature_importance][google.cloud.automl.v1beta1.PredictRequest.params] param is set): Measurement of how impactful for the prediction returned for the given row the value in this column was. Specifically, the feature importance specifies the marginal contribution that the feature made to the prediction score compared to the baseline score. These values are computed using the Sampled Shapley method.

Trait Implementations

impl Clone for TablesModelColumnInfo[src]

impl Debug for TablesModelColumnInfo[src]

impl Default for TablesModelColumnInfo[src]

impl Message for TablesModelColumnInfo[src]

impl PartialEq<TablesModelColumnInfo> for TablesModelColumnInfo[src]

impl StructuralPartialEq for TablesModelColumnInfo[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]