pub struct GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec {
pub features: Option<Vec<String>>,
pub categorical_metric_type: Option<String>,
pub numeric_metric_type: Option<String>,
pub default_numeric_alert_condition: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>,
pub default_categorical_alert_condition: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>,
pub feature_alert_conditions: Option<HashMap<String, GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>>,
}Expand description
Data drift monitoring spec. Data drift measures the distribution distance between the current dataset and a baseline dataset. A typical use case is to detect data drift between the recent production serving dataset and the training dataset, or to compare the recent production dataset with a dataset from a previous period.
This type is not used in any activity, and only used as part of another schema.
Fields§
§features: Option<Vec<String>>Feature names / Prediction output names interested in monitoring. These should be a subset of the input feature names or prediction output names specified in the monitoring schema. If the field is not specified all features / prediction outputs outlied in the monitoring schema will be used.
categorical_metric_type: Option<String>Supported metrics type: * l_infinity * jensen_shannon_divergence
numeric_metric_type: Option<String>Supported metrics type: * jensen_shannon_divergence
default_numeric_alert_condition: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>Default alert condition for all the numeric features.
default_categorical_alert_condition: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>Default alert condition for all the categorical features.
feature_alert_conditions: Option<HashMap<String, GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition>>Per feature alert condition will override default alert condition.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl Clone for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
fn clone( &self, ) -> GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl Default for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Source§fn default() -> GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
fn default() -> GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl RefUnwindSafe for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl Send for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl Sync for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl Unpin for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
impl UnwindSafe for GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more