Class: Aws::LexRuntimeV2::Types::ConfidenceScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexRuntimeV2::Types::ConfidenceScore
- Defined in:
- gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb
Overview
Provides a score that indicates the confidence that Amazon Lex V2 has that an intent is the one that satisfies the user's intent.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#score ⇒ Float
A score that indicates how confident Amazon Lex V2 is that an intent satisfies the user's intent.
Instance Attribute Details
#score ⇒ Float
A score that indicates how confident Amazon Lex V2 is that an intent satisfies the user's intent. Ranges between 0.00 and 1.00. Higher scores indicate higher confidence.
199 200 201 202 203 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 199 class ConfidenceScore < Struct.new( :score) SENSITIVE = [] include Aws::Structure end |