You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Comprehend::Types::EntityRecognizerEvaluationMetrics

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Detailed information about the accuracy of an entity recognizer.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#f1_scoreFloat

A measure of how accurate the recognizer results are for the test data. It is derived from the Precision and Recall values. The F1Score is the harmonic average of the two scores. The highest score is 1, and the worst score is 0.

Returns:

  • (Float)

    A measure of how accurate the recognizer results are for the test data.

#precisionFloat

A measure of the usefulness of the recognizer results in the test data. High precision means that the recognizer returned substantially more relevant results than irrelevant ones.

Returns:

  • (Float)

    A measure of the usefulness of the recognizer results in the test data.

#recallFloat

A measure of how complete the recognizer results are for the test data. High recall means that the recognizer returned most of the relevant results.

Returns:

  • (Float)

    A measure of how complete the recognizer results are for the test data.