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.



21232
21233
21234
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21232

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)


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

def metric_prompt_template
  @metric_prompt_template
end

#system_instructionString

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

Returns:

  • (String)


21230
21231
21232
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21230

def system_instruction
  @system_instruction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21237
21238
21239
21240
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21237

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