The objective configuration for model monitoring, including the information needed to detect anomalies for one particular model.
Training dataset for models. This field has to be set only if TrainingPredictionSkewDetectionConfig is specified.
The config for skew between training data and prediction data.
The config for drift of prediction data.
The config for integrating with Vertex Explainable AI.
JSON representation |
---|
{ "trainingDataset": { object ( |
TrainingDataset
Training Dataset information.
dataFormat
string
data format of the dataset, only applicable if the input is from Google Cloud Storage. The possible formats are:
"tf-record" The source file is a TFRecord file.
"csv" The source file is a CSV file. "jsonl" The source file is a JSONL file.
targetField
string
The target field name the model is to predict. This field will be excluded when doing Predict and (or) Explain for the training data.
Strategy to sample data from Training Dataset. If not set, we process the whole dataset.
Union field data_source
.
data_source
can be only one of the following:
dataset
string
The resource name of the Dataset used to train this Model.
The Google Cloud Storage uri of the unmanaged Dataset used to train this Model.
The BigQuery table of the unmanaged Dataset used to train this Model.
JSON representation |
---|
{ "dataFormat": string, "targetField": string, "loggingSamplingStrategy": { object ( |
TrainingPredictionSkewDetectionConfig
The config for Training & Prediction data skew detection. It specifies the training dataset sources and the skew detection parameters.
Key is the feature name and value is the threshold. If a feature needs to be monitored for skew, a value threshold must be configured for that feature. The threshold here is against feature distribution distance between the training and prediction feature.
Key is the feature name and value is the threshold. The threshold here is against attribution score distance between the training and prediction feature.
Skew anomaly detection threshold used by all features. When the per-feature thresholds are not set, this field can be used to specify a threshold for all features.
JSON representation |
---|
{ "skewThresholds": { string: { object ( |
PredictionDriftDetectionConfig
The config for Prediction data drift detection.
Key is the feature name and value is the threshold. If a feature needs to be monitored for drift, a value threshold must be configured for that feature. The threshold here is against feature distribution distance between different time windws.
Key is the feature name and value is the threshold. The threshold here is against attribution score distance between different time windows.
Drift anomaly detection threshold used by all features. When the per-feature thresholds are not set, this field can be used to specify a threshold for all features.
JSON representation |
---|
{ "driftThresholds": { string: { object ( |
ExplanationConfig
The config for integrating with Vertex Explainable AI. Only applicable if the Model has explanationSpec populated.
enableFeatureAttributes
boolean
If want to analyze the Vertex Explainable AI feature attribute scores or not. If set to true, Vertex AI will log the feature attributions from explain response and do the skew/drift detection for them.
Predictions generated by the BatchPredictionJob using baseline dataset.
JSON representation |
---|
{
"enableFeatureAttributes": boolean,
"explanationBaseline": {
object ( |
ExplanationBaseline
Output from BatchPredictionJob
for Model Monitoring baseline dataset, which can be used to generate baseline attribution scores.
The storage format of the predictions generated BatchPrediction job.
destination
. The configuration specifying of BatchExplain job output. This can be used to generate the baseline of feature attribution scores. destination
can be only one of the following:Cloud Storage location for BatchExplain output.
BigQuery location for BatchExplain output.
JSON representation |
---|
{ "predictionFormat": enum ( |
PredictionFormat
The storage format of the predictions generated BatchPrediction job.
Enums | |
---|---|
PREDICTION_FORMAT_UNSPECIFIED |
Should not be set. |
JSONL |
Predictions are in JSONL files. |
BIGQUERY |
Predictions are in BigQuery. |