| Interface | Description |
|---|---|
| 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.
|
| ScoreProvider |
Thing that can provide the score
|
| Class | Description |
|---|---|
| BackgroundModelNormalizer |
Normalizes a set of Tokens against the best scoring Token of a background model.
|
| MaxScoreNormalizer |
Performs a simple normalization of all token-scores by
|
| SimpleAcousticScorer |
Implements some basic scorer functionality, including a simple default
acoustic scoring implementation which scores within the current thread, that
can be changed by overriding the
SimpleAcousticScorer.doScoring(java.util.List<T>, edu.cmu.sphinx.frontend.Data) method. |
| ThreadedAcousticScorer |
An acoustic scorer that breaks the scoring up into a configurable number of separate threads.
|