Struct aws_sdk_comprehend::model::ClassifierMetadata [−][src]
#[non_exhaustive]pub struct ClassifierMetadata {
pub number_of_labels: Option<i32>,
pub number_of_trained_documents: Option<i32>,
pub number_of_test_documents: Option<i32>,
pub evaluation_metrics: Option<ClassifierEvaluationMetrics>,
}Expand description
Provides information about a document classifier.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.number_of_labels: Option<i32>The number of labels in the input data.
number_of_trained_documents: Option<i32>The number of documents in the input data that were used to train the classifier. Typically this is 80 to 90 percent of the input documents.
number_of_test_documents: Option<i32>The number of documents in the input data that were used to test the classifier. Typically this is 10 to 20 percent of the input documents, up to 10,000 documents.
evaluation_metrics: Option<ClassifierEvaluationMetrics>Describes the result metrics for the test data associated with an documentation classifier.
Implementations
The number of labels in the input data.
The number of documents in the input data that were used to train the classifier. Typically this is 80 to 90 percent of the input documents.
The number of documents in the input data that were used to test the classifier. Typically this is 10 to 20 percent of the input documents, up to 10,000 documents.
Describes the result metrics for the test data associated with an documentation classifier.
Creates a new builder-style object to manufacture ClassifierMetadata
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ClassifierMetadata
impl Send for ClassifierMetadata
impl Sync for ClassifierMetadata
impl Unpin for ClassifierMetadata
impl UnwindSafe for ClassifierMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
