Provides information about a document classifier.

interface ClassifierMetadata {
    EvaluationMetrics?: ClassifierEvaluationMetrics;
    NumberOfLabels?: number;
    NumberOfTestDocuments?: number;
    NumberOfTrainedDocuments?: number;
}

Properties

EvaluationMetrics?: ClassifierEvaluationMetrics

Describes the result metrics for the test data associated with an documentation classifier.

NumberOfLabels?: number

The number of labels in the input data.

NumberOfTestDocuments?: number

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.

NumberOfTrainedDocuments?: number

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.