Class: Google::Apis::LanguageV1::Entity
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::Entity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1/classes.rb,
generated/google/apis/language_v1/representations.rb,
generated/google/apis/language_v1/representations.rb
Overview
Represents a phrase in the text that is a known entity, such as a person, an organization, or location. The API associates information, such as salience and mentions, with entities.
Instance Attribute Summary collapse
-
#mentions ⇒ Array<Google::Apis::LanguageV1::EntityMention>
The mentions of this entity in the input document.
-
#metadata ⇒ Hash<String,String>
Metadata associated with the entity.
-
#name ⇒ String
The representative name for the entity.
-
#salience ⇒ Float
The salience score associated with the entity in the [0, 1.0] range.
-
#type ⇒ String
The entity type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Entity
constructor
A new instance of Entity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Entity
Returns a new instance of Entity
237 238 239 |
# File 'generated/google/apis/language_v1/classes.rb', line 237 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mentions ⇒ Array<Google::Apis::LanguageV1::EntityMention>
The mentions of this entity in the input document. The API currently
supports proper noun mentions.
Corresponds to the JSON property mentions
209 210 211 |
# File 'generated/google/apis/language_v1/classes.rb', line 209 def mentions @mentions end |
#metadata ⇒ Hash<String,String>
Metadata associated with the entity.
Currently, Wikipedia URLs and Knowledge Graph MIDs are provided, if
available. The associated keys are "wikipedia_url" and "mid", respectively.
Corresponds to the JSON property metadata
226 227 228 |
# File 'generated/google/apis/language_v1/classes.rb', line 226 def @metadata end |
#name ⇒ String
The representative name for the entity.
Corresponds to the JSON property name
214 215 216 |
# File 'generated/google/apis/language_v1/classes.rb', line 214 def name @name end |
#salience ⇒ Float
The salience score associated with the entity in the [0, 1.0] range.
The salience score for an entity provides information about the
importance or centrality of that entity to the entire document text.
Scores closer to 0 are less salient, while scores closer to 1.0 are highly
salient.
Corresponds to the JSON property salience
235 236 237 |
# File 'generated/google/apis/language_v1/classes.rb', line 235 def salience @salience end |
#type ⇒ String
The entity type.
Corresponds to the JSON property type
219 220 221 |
# File 'generated/google/apis/language_v1/classes.rb', line 219 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
242 243 244 245 246 247 248 |
# File 'generated/google/apis/language_v1/classes.rb', line 242 def update!(**args) @mentions = args[:mentions] if args.key?(:mentions) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) @metadata = args[:metadata] if args.key?(:metadata) @salience = args[:salience] if args.key?(:salience) end |