Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly
- 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
Represents a single model monitoring anomaly.
Instance Attribute Summary collapse
-
#algorithm ⇒ String
Algorithm used to calculated the metrics, eg: jensen_shannon_divergence, l_infinity.
-
#model_monitoring_job ⇒ String
Model monitoring job resource name.
-
#tabular_anomaly ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
Tabular anomaly details.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAnomaly.
28727 28728 28729 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#algorithm ⇒ String
Algorithm used to calculated the metrics, eg: jensen_shannon_divergence,
l_infinity.
Corresponds to the JSON property algorithm
28715 28716 28717 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28715 def algorithm @algorithm end |
#model_monitoring_job ⇒ String
Model monitoring job resource name.
Corresponds to the JSON property modelMonitoringJob
28720 28721 28722 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28720 def model_monitoring_job @model_monitoring_job end |
#tabular_anomaly ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
Tabular anomaly details.
Corresponds to the JSON property tabularAnomaly
28725 28726 28727 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28725 def tabular_anomaly @tabular_anomaly end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28732 28733 28734 28735 28736 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28732 def update!(**args) @algorithm = args[:algorithm] if args.key?(:algorithm) @model_monitoring_job = args[:model_monitoring_job] if args.key?(:model_monitoring_job) @tabular_anomaly = args[:tabular_anomaly] if args.key?(:tabular_anomaly) end |