Class: Google::Apis::HealthcareV1beta1::Feature
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Feature
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
A feature of an entity mention.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The model's confidence in this feature annotation.
-
#value ⇒ String
The value of this feature annotation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Feature
constructor
A new instance of Feature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Feature
Returns a new instance of Feature.
2045 2046 2047 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2045 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
The model's confidence in this feature annotation. A number between 0 and 1.
Corresponds to the JSON property confidence
2037 2038 2039 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2037 def confidence @confidence end |
#value ⇒ String
The value of this feature annotation. Its range depends on the type of the
feature.
Corresponds to the JSON property value
2043 2044 2045 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2043 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2050 2051 2052 2053 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2050 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @value = args[:value] if args.key?(:value) end |