Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Tabular monitoring objective.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective.



17663
17664
17665
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17663

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#feature_attribution_specGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecFeatureAttributionSpec

Feature attribution monitoring spec. Corresponds to the JSON property featureAttributionSpec



17643
17644
17645
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17643

def feature_attribution_spec
  @feature_attribution_spec
end

#feature_drift_specGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec

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. Corresponds to the JSON property featureDriftSpec



17652
17653
17654
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17652

def feature_drift_spec
  @feature_drift_spec
end

#prediction_output_drift_specGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecDataDriftSpec

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. Corresponds to the JSON property predictionOutputDriftSpec



17661
17662
17663
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17661

def prediction_output_drift_spec
  @prediction_output_drift_spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17668
17669
17670
17671
17672
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17668

def update!(**args)
  @feature_attribution_spec = args[:feature_attribution_spec] if args.key?(:feature_attribution_spec)
  @feature_drift_spec = args[:feature_drift_spec] if args.key?(:feature_drift_spec)
  @prediction_output_drift_spec = args[:prediction_output_drift_spec] if args.key?(:prediction_output_drift_spec)
end