edu.cmu.sphinx.result
Class AbstractSausageMaker

java.lang.Object
  extended by edu.cmu.sphinx.result.AbstractSausageMaker
All Implemented Interfaces:
ConfidenceScorer, Configurable
Direct Known Subclasses:
PivotSausageMaker, SausageMaker

public abstract class AbstractSausageMaker
extends java.lang.Object
implements ConfidenceScorer, Configurable

Parent to all sausage makers.

Author:
pgorniak

Field Summary
static java.lang.String PROP_LANGUAGE_WEIGHT
          Sphinx property that defines the language model weight.
 
Constructor Summary
AbstractSausageMaker()
           
 
Method Summary
 void newProperties(PropertySheet ps)
          This method is called when this configurable component needs to be reconfigured.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface edu.cmu.sphinx.result.ConfidenceScorer
score
 

Field Detail

PROP_LANGUAGE_WEIGHT

@S4Double(defaultValue=1.0)
public static final java.lang.String PROP_LANGUAGE_WEIGHT
Sphinx property that defines the language model weight.

See Also:
Constant Field Values
Constructor Detail

AbstractSausageMaker

public AbstractSausageMaker()
Method Detail

newProperties

public void newProperties(PropertySheet ps)
                   throws PropertyException
Description copied from interface: Configurable
This method is called when this configurable component needs to be reconfigured.

Specified by:
newProperties in interface Configurable
Parameters:
ps - a property sheet holding the new data
Throws:
PropertyException - if there is a problem with the properties.
See Also:
Configurable.newProperties(edu.cmu.sphinx.util.props.PropertySheet)