Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance
- 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
Spec for question answering quality instance.
Instance Attribute Summary collapse
-
#context ⇒ String
Required.
-
#instruction ⇒ String
Required.
-
#prediction ⇒ String
Required.
-
#reference ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance
constructor
A new instance of GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance
Returns a new instance of GoogleCloudAiplatformV1beta1QuestionAnsweringQualityInstance.
22413 22414 22415 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22413 def initialize(**args) update!(**args) end |
Instance Attribute Details
#context ⇒ String
Required. Text to answer the question.
Corresponds to the JSON property context
22396 22397 22398 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22396 def context @context end |
#instruction ⇒ String
Required. Question Answering prompt for LLM.
Corresponds to the JSON property instruction
22401 22402 22403 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22401 def instruction @instruction end |
#prediction ⇒ String
Required. Output of the evaluated model.
Corresponds to the JSON property prediction
22406 22407 22408 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22406 def prediction @prediction end |
#reference ⇒ String
Optional. Ground truth used to compare against the prediction.
Corresponds to the JSON property reference
22411 22412 22413 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22411 def reference @reference end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22418 22419 22420 22421 22422 22423 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22418 def update!(**args) @context = args[:context] if args.key?(:context) @instruction = args[:instruction] if args.key?(:instruction) @prediction = args[:prediction] if args.key?(:prediction) @reference = args[:reference] if args.key?(:reference) end |