Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTextSentimentAnnotation
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTextSentimentAnnotation
- 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
Annotation details specific to text sentiment.
Instance Attribute Summary collapse
-
#annotation_spec_id ⇒ String
The resource Id of the AnnotationSpec that this Annotation pertains to.
-
#display_name ⇒ String
The display name of the AnnotationSpec that this Annotation pertains to.
-
#sentiment ⇒ Fixnum
The sentiment score for text.
-
#sentiment_max ⇒ Fixnum
The sentiment max score for text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTextSentimentAnnotation
constructor
A new instance of GoogleCloudAiplatformV1SchemaTextSentimentAnnotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTextSentimentAnnotation
Returns a new instance of GoogleCloudAiplatformV1SchemaTextSentimentAnnotation.
26255 26256 26257 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotation_spec_id ⇒ String
The resource Id of the AnnotationSpec that this Annotation pertains to.
Corresponds to the JSON property annotationSpecId
26238 26239 26240 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26238 def annotation_spec_id @annotation_spec_id end |
#display_name ⇒ String
The display name of the AnnotationSpec that this Annotation pertains to.
Corresponds to the JSON property displayName
26243 26244 26245 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26243 def display_name @display_name end |
#sentiment ⇒ Fixnum
The sentiment score for text.
Corresponds to the JSON property sentiment
26248 26249 26250 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26248 def sentiment @sentiment end |
#sentiment_max ⇒ Fixnum
The sentiment max score for text.
Corresponds to the JSON property sentimentMax
26253 26254 26255 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26253 def sentiment_max @sentiment_max end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26260 26261 26262 26263 26264 26265 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26260 def update!(**args) @annotation_spec_id = args[:annotation_spec_id] if args.key?(:annotation_spec_id) @display_name = args[:display_name] if args.key?(:display_name) @sentiment = args[:sentiment] if args.key?(:sentiment) @sentiment_max = args[:sentiment_max] if args.key?(:sentiment_max) end |