Class: Aws::Comprehend::Types::SentimentScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::SentimentScore
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Describes the level of confidence that Amazon Comprehend has in the accuracy of its detection of sentiments.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mixed ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `MIXED` sentiment.
-
#negative ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEGATIVE` sentiment.
-
#neutral ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEUTRAL` sentiment.
-
#positive ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `POSITIVE` sentiment.
Instance Attribute Details
#mixed ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `MIXED` sentiment.
6595 6596 6597 6598 6599 6600 6601 6602 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6595 class SentimentScore < Struct.new( :positive, :negative, :neutral, :mixed) SENSITIVE = [] include Aws::Structure end |
#negative ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEGATIVE` sentiment.
6595 6596 6597 6598 6599 6600 6601 6602 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6595 class SentimentScore < Struct.new( :positive, :negative, :neutral, :mixed) SENSITIVE = [] include Aws::Structure end |
#neutral ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEUTRAL` sentiment.
6595 6596 6597 6598 6599 6600 6601 6602 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6595 class SentimentScore < Struct.new( :positive, :negative, :neutral, :mixed) SENSITIVE = [] include Aws::Structure end |
#positive ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `POSITIVE` sentiment.
6595 6596 6597 6598 6599 6600 6601 6602 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6595 class SentimentScore < Struct.new( :positive, :negative, :neutral, :mixed) SENSITIVE = [] include Aws::Structure end |