Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec

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

Monitoring objectives spec.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec.



17570
17571
17572
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17570

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

Instance Attribute Details

#baseline_datasetGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput

Model monitoring data input spec. Corresponds to the JSON property baselineDataset



17553
17554
17555
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17553

def baseline_dataset
  @baseline_dataset
end

#explanation_specGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec

Specification of Model explanation. Corresponds to the JSON property explanationSpec



17558
17559
17560
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17558

def explanation_spec
  @explanation_spec
end

#tabular_objectiveGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective

Tabular monitoring objective. Corresponds to the JSON property tabularObjective



17563
17564
17565
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17563

def tabular_objective
  @tabular_objective
end

#target_datasetGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput

Model monitoring data input spec. Corresponds to the JSON property targetDataset



17568
17569
17570
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17568

def target_dataset
  @target_dataset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17575
17576
17577
17578
17579
17580
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17575

def update!(**args)
  @baseline_dataset = args[:baseline_dataset] if args.key?(:baseline_dataset)
  @explanation_spec = args[:explanation_spec] if args.key?(:explanation_spec)
  @tabular_objective = args[:tabular_objective] if args.key?(:tabular_objective)
  @target_dataset = args[:target_dataset] if args.key?(:target_dataset)
end