File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ message ModelMonitoringObjectiveConfig {
8282 // against attribution score distance between the training and prediction
8383 // feature.
8484 map <string , ThresholdConfig > attribution_score_skew_thresholds = 2 ;
85+
86+ // Skew anomaly detection threshold used by all features.
87+ // When the per-feature thresholds are not set, this field can be used to
88+ // specify a threshold for all features.
89+ ThresholdConfig default_skew_threshold = 6 ;
8590 }
8691
8792 // The config for Prediction data drift detection.
@@ -95,6 +100,11 @@ message ModelMonitoringObjectiveConfig {
95100 // Key is the feature name and value is the threshold. The threshold here is
96101 // against attribution score distance between different time windows.
97102 map <string , ThresholdConfig > attribution_score_drift_thresholds = 2 ;
103+
104+ // Drift anomaly detection threshold used by all features.
105+ // When the per-feature thresholds are not set, this field can be used to
106+ // specify a threshold for all features.
107+ ThresholdConfig default_drift_threshold = 5 ;
98108 }
99109
100110 // The config for integrating with Vertex Explainable AI. Only applicable if
Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ message ModelMonitoringObjectiveConfig {
8282 // against attribution score distance between the training and prediction
8383 // feature.
8484 map <string , ThresholdConfig > attribution_score_skew_thresholds = 2 ;
85+
86+ // Skew anomaly detection threshold used by all features.
87+ // When the per-feature thresholds are not set, this field can be used to
88+ // specify a threshold for all features.
89+ ThresholdConfig default_skew_threshold = 6 ;
8590 }
8691
8792 // The config for Prediction data drift detection.
@@ -95,6 +100,11 @@ message ModelMonitoringObjectiveConfig {
95100 // Key is the feature name and value is the threshold. The threshold here is
96101 // against attribution score distance between different time windows.
97102 map <string , ThresholdConfig > attribution_score_drift_thresholds = 2 ;
103+
104+ // Drift anomaly detection threshold used by all features.
105+ // When the per-feature thresholds are not set, this field can be used to
106+ // specify a threshold for all features.
107+ ThresholdConfig default_drift_threshold = 5 ;
98108 }
99109
100110 // The config for integrating with Vertex Explainable AI. Only applicable if
You can’t perform that action at this time.
0 commit comments