Class: Aws::Comprehend::Types::SentimentScore

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#mixedFloat

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `MIXED` sentiment.

Returns:

  • (Float)

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

#negativeFloat

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEGATIVE` sentiment.

Returns:

  • (Float)

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

#neutralFloat

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `NEUTRAL` sentiment.

Returns:

  • (Float)

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

#positiveFloat

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the `POSITIVE` sentiment.

Returns:

  • (Float)

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