Class: Aws::Comprehend::Types::EntityRecognizerMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityRecognizerMetadata
- Includes:
- Structure
- Defined in:
- 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.
4094 4095 4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4094 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.
4094 4095 4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4094 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.
4094 4095 4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4094 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.
4094 4095 4096 4097 4098 4099 4100 4101 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4094 class EntityRecognizerMetadata < Struct.new( :number_of_trained_documents, :number_of_test_documents, :evaluation_metrics, :entity_types) SENSITIVE = [] include Aws::Structure end |