Class: Aws::Comprehend::Types::EntityRecognizerMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityRecognizerMetadata
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Detailed information about an entity recognizer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entity_types ⇒ Array<Types::EntityRecognizerMetadataEntityTypesListItem>
Entity types from the metadata of an entity recognizer.
-
#evaluation_metrics ⇒ Types::EntityRecognizerEvaluationMetrics
Detailed information about the accuracy of an entity recognizer.
-
#number_of_test_documents ⇒ Integer
The number of documents in the input data that were used to test the entity recognizer.
-
#number_of_trained_documents ⇒ Integer
The number of documents in the input data that were used to train the entity recognizer.
Instance Attribute Details
#entity_types ⇒ Array<Types::EntityRecognizerMetadataEntityTypesListItem>
Entity types from the metadata of an entity recognizer.
4221 4222 4223 4224 4225 4226 4227 4228 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4221 class EntityRecognizerMetadata < Struct.new( :number_of_trained_documents, :number_of_test_documents, :evaluation_metrics, :entity_types) SENSITIVE = [] include Aws::Structure end |
#evaluation_metrics ⇒ Types::EntityRecognizerEvaluationMetrics
Detailed information about the accuracy of an entity recognizer.
4221 4222 4223 4224 4225 4226 4227 4228 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4221 class EntityRecognizerMetadata < Struct.new( :number_of_trained_documents, :number_of_test_documents, :evaluation_metrics, :entity_types) SENSITIVE = [] include Aws::Structure end |
#number_of_test_documents ⇒ Integer
The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.
4221 4222 4223 4224 4225 4226 4227 4228 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4221 class EntityRecognizerMetadata < Struct.new( :number_of_trained_documents, :number_of_test_documents, :evaluation_metrics, :entity_types) SENSITIVE = [] include Aws::Structure end |
#number_of_trained_documents ⇒ Integer
The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.
4221 4222 4223 4224 4225 4226 4227 4228 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4221 class EntityRecognizerMetadata < Struct.new( :number_of_trained_documents, :number_of_test_documents, :evaluation_metrics, :entity_types) SENSITIVE = [] include Aws::Structure end |