Class: Aws::Comprehend::Types::ClassifyDocumentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::ClassifyDocumentResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#classes ⇒ Array<Types::DocumentClass>
The classes used by the document being analyzed.
-
#labels ⇒ Array<Types::DocumentLabel>
The labels used the document being analyzed.
Instance Attribute Details
#classes ⇒ Array<Types::DocumentClass>
The classes used by the document being analyzed. These are used for multi-class trained models. Individual classes are mutually exclusive and each document is expected to have only a single class assigned to it. For example, an animal can be a dog or a cat, but not both at the same time.
665 666 667 668 669 670 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 665 class ClassifyDocumentResponse < Struct.new( :classes, :labels) SENSITIVE = [] include Aws::Structure end |
#labels ⇒ Array<Types::DocumentLabel>
The labels used the document being analyzed. These are used for multi-label trained models. Individual labels represent different categories that are related in some manner and are not mutually exclusive. For example, a movie can be just an action movie, or it can be an action movie, a science fiction movie, and a comedy, all at the same time.
665 666 667 668 669 670 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 665 class ClassifyDocumentResponse < Struct.new( :classes, :labels) SENSITIVE = [] include Aws::Structure end |