Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PairwiseMetricResult

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 pairwise metric result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1PairwiseMetricResult

Returns a new instance of GoogleCloudAiplatformV1PairwiseMetricResult.



21052
21053
21054
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21052

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

Instance Attribute Details

#custom_outputGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1CustomOutput

Spec for custom output. Corresponds to the JSON property customOutput



21040
21041
21042
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21040

def custom_output
  @custom_output
end

#explanationString

Output only. Explanation for pairwise metric score. Corresponds to the JSON property explanation

Returns:

  • (String)


21045
21046
21047
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21045

def explanation
  @explanation
end

#pairwise_choiceString

Output only. Pairwise metric choice. Corresponds to the JSON property pairwiseChoice

Returns:

  • (String)


21050
21051
21052
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21050

def pairwise_choice
  @pairwise_choice
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21057
21058
21059
21060
21061
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21057

def update!(**args)
  @custom_output = args[:custom_output] if args.key?(:custom_output)
  @explanation = args[:explanation] if args.key?(:explanation)
  @pairwise_choice = args[:pairwise_choice] if args.key?(:pairwise_choice)
end