Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
- 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
-
#baseline_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput
Model monitoring data input spec.
-
#explanation_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec
Specification of Model explanation.
-
#tabular_objective ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective
Tabular monitoring objective.
-
#target_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput
Model monitoring data input spec.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec.
19844 19845 19846 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#baseline_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput
Model monitoring data input spec.
Corresponds to the JSON property baselineDataset
19827 19828 19829 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19827 def baseline_dataset @baseline_dataset end |
#explanation_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec
Specification of Model explanation.
Corresponds to the JSON property explanationSpec
19832 19833 19834 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19832 def explanation_spec @explanation_spec end |
#tabular_objective ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpecTabularObjective
Tabular monitoring objective.
Corresponds to the JSON property tabularObjective
19837 19838 19839 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19837 def tabular_objective @tabular_objective end |
#target_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInput
Model monitoring data input spec.
Corresponds to the JSON property targetDataset
19842 19843 19844 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19842 def target_dataset @target_dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19849 19850 19851 19852 19853 19854 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19849 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 |