Class: Google::Apis::LanguageV2::EntityMention
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::EntityMention
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb
Overview
Represents a mention for an entity in the text. Currently, proper noun mentions are supported.
Instance Attribute Summary collapse
-
#probability ⇒ Float
Probability score associated with the entity.
-
#sentiment ⇒ Google::Apis::LanguageV2::Sentiment
Represents the feeling associated with the entire text or entities in the text.
-
#text ⇒ Google::Apis::LanguageV2::TextSpan
Represents a text span in the input document.
-
#type ⇒ String
The type of the entity mention.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EntityMention
constructor
A new instance of EntityMention.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EntityMention
Returns a new instance of EntityMention.
656 657 658 |
# File 'lib/google/apis/language_v2/classes.rb', line 656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#probability ⇒ Float
Probability score associated with the entity. The score shows the probability
of the entity mention being the entity type. The score is in (0, 1] range.
Corresponds to the JSON property probability
639 640 641 |
# File 'lib/google/apis/language_v2/classes.rb', line 639 def probability @probability end |
#sentiment ⇒ Google::Apis::LanguageV2::Sentiment
Represents the feeling associated with the entire text or entities in the text.
Corresponds to the JSON property sentiment
644 645 646 |
# File 'lib/google/apis/language_v2/classes.rb', line 644 def sentiment @sentiment end |
#text ⇒ Google::Apis::LanguageV2::TextSpan
Represents a text span in the input document.
Corresponds to the JSON property text
649 650 651 |
# File 'lib/google/apis/language_v2/classes.rb', line 649 def text @text end |
#type ⇒ String
The type of the entity mention.
Corresponds to the JSON property type
654 655 656 |
# File 'lib/google/apis/language_v2/classes.rb', line 654 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
661 662 663 664 665 666 |
# File 'lib/google/apis/language_v2/classes.rb', line 661 def update!(**args) @probability = args[:probability] if args.key?(:probability) @sentiment = args[:sentiment] if args.key?(:sentiment) @text = args[:text] if args.key?(:text) @type = args[:type] if args.key?(:type) end |