Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricSpec

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

Overview

Spec for pointwise metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1PointwiseMetricSpec

Returns a new instance of GoogleCloudAiplatformV1PointwiseMetricSpec.



21219
21220
21221
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21219

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

Instance Attribute Details

#metric_prompt_templateString

Required. Metric prompt template for pointwise metric. Corresponds to the JSON property metricPromptTemplate

Returns:

  • (String)


21212
21213
21214
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21212

def metric_prompt_template
  @metric_prompt_template
end

#system_instructionString

Optional. System instructions for pointwise metric. Corresponds to the JSON property systemInstruction

Returns:

  • (String)


21217
21218
21219
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21217

def system_instruction
  @system_instruction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21224
21225
21226
21227
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21224

def update!(**args)
  @metric_prompt_template = args[:metric_prompt_template] if args.key?(:metric_prompt_template)
  @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
end