Package edu.cmu.sphinx.decoder.scorer

Provides an interface that represents entities that can be scored, and an interface and several implementations of a scorer that can score these entities.

See:
          Description

Interface Summary
AcousticScorer Provides a mechanism for scoring a set of HMM states
Scoreable Represents an entity that can be scored against a data
ScoreNormalizer Describes all API-elements that are necessary to normalize token-scores after these have been computed by an AcousticScorer.
 

Class Summary
AbstractScorer Implements some basic scorer functionality but keeps specific scoring open for sub-classes.
MaxScoreNormalizer Performs a simple normalization of all token-scores by
ScorerTests Unit tests for the processing logic of the scorer implementations
SimpleAcousticScorer A Simple acoustic scorer which scores within the current thread.
ThreadedAcousticScorer An acoustic scorer that breaks the scoring up into a configurable number of separate threads.
 

Package edu.cmu.sphinx.decoder.scorer Description

Provides an interface that represents entities that can be scored, and an interface and several implementations of a scorer that can score these entities. Additionally it provides an interface to normalize computed scores and some basic implementations of it.