public class FrontEnd extends BaseDataProcessor
The front end is modeled as a series of data processors, each of which performs a specific signal processing
function. For example, a processor performs Fast-Fourier Transform (FFT) on input data, another processor performs
high-pass filtering. Figure 1 below describes how the front end looks like:
Figure 1: The Sphinx4 front end.
Each such data processor implements the DataProcessor
interface. Objects that
implements the Data
interface enters and exits the front end, and go between the
processors in the front end. The input data to the front end is typically audio data, but this front end allows any
input type. Similarly, the output data is typically features, but this front end allows any output type. You can
configure the front end to accept any input type and return any output type. We will describe the configuration of
the front end in more detail below.
The Pull Model of the Front End
The front end uses a pull model. To obtain output from the front end, one would call the method:
FrontEnd frontend = ... // see how to obtain the front end below
Data output = frontend.getData();
Calling getData
on the front end would in turn call the getData() method on the last
DataProcessor, which in turn calls the getData() method on the second last DataProcessor, and so on, until the
getData() method on the first DataProcessor is called, which reads Data objects from the input. The input to the
front end is actually another DataProcessor, and is usually (though not necessarily) part of the front end and is not
shown in the figure above. If you want to maintain some control of the input DataProcessor, you can create it
separately, and use the setDataSource
method to set it
as the input DataProcessor. In that case, the input DataProcessor will be prepended to the existing chain of
DataProcessors. One common input DataProcessor is the Microphone
, which
implements the DataProcessor interface.
DataProcessor microphone = new Microphone();
microphone.initialize(...);
frontend.setDataSource(microphone);
Another common input DataProcessor is the StreamDataSource
. It turns a Java
InputStream
into Data objects. It is usually used in batch mode decoding.
Configuring the front end
The front end must be configured through the Sphinx properties file. For details about configuring the front end, refer to the document Configuring the Front End.
Current state-of-the-art front ends generate features that contain Mel-frequency cepstral coefficients (MFCC). To specify such a front end (called a 'pipeline') in Sphinx-4, insert the following lines in the Sphinx-4 configuration file:
<component name="mfcFrontEnd" type="edu.cmu.sphinx.frontend.FrontEnd"> <propertylist name="pipeline"> <item>preemphasizer</item> <item>windower</item> <item>dft</item> <item>melFilterBank</item> <item>dct</item> <item>batchCMN</item> <item>featureExtractor</item> </propertylist> </component> <component name="preemphasizer" type="Note: In this example, 'mfcFrontEnd' becomes the name of the front end.edu.cmu.sphinx.frontend.filter.Preemphasizer
"/> <component name="windower" type="edu.cmu.sphinx.frontend.window.RaisedCosineWindower
"/> <component name="dft" type="edu.cmu.sphinx.frontend.transform.DiscreteFourierTransform
"/> <component name="melFilterBank" type="edu.cmu.sphinx.frontend.frequencywarp.MelFrequencyFilterBank
"/> <component name="dct" type="edu.cmu.sphinx.frontend.transform.DiscreteCosineTransform
"/> <component name="batchCMN" type="edu.cmu.sphinx.frontend.feature.BatchCMN
"/> <component name="featureExtractor" type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor
"/>
Sphinx-4 also allows you to:
For details on how to do this, refer to the document Configuring the Front End.
Obtaining a Front End
In order to obtain a front end, it must be specified in the configuration file. The Sphinx-4 front end is connected to the rest of the system via the scorer. We will continue with the above example to show how the scorer will obtain the front end. In the configuration file, the scorer should be specified as follows:
<component name="scorer" type="edu.cmu.sphinx.decoder.scorer.SimpleAcousticScorer"> <property name="frontend" value="mfcFrontEnd"/> </component>In the SimpleAcousticScorer, the front end is obtained in the
newProperties
method as follows:
public void newProperties(PropertySheet ps) throws PropertyException { FrontEnd frontend = (FrontEnd) ps.getComponent("frontend", FrontEnd.class); }
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
PROP_PIPELINE
the name of the property list of all the components of the frontend pipe line
|
logger
Constructor and Description |
---|
FrontEnd() |
FrontEnd(java.util.List<DataProcessor> frontEndList) |
Modifier and Type | Method and Description |
---|---|
void |
addSignalListener(SignalListener listener)
Add a listener to be called when a signal is detected.
|
protected void |
fireSignalListeners(Signal signal)
Fire all listeners for signals.
|
Data |
getData()
Returns the processed Data output, basically calls
getData() on the last processor. |
java.util.List<DataProcessor> |
getElements()
Returns the collection of
DataProcessor s of this FrontEnd . |
DataProcessor |
getLastDataProcessor()
Returns the last data processor within the
DataProcessor chain of this FrontEnd . |
void |
initialize()
Initializes this DataProcessor.
|
void |
newProperties(PropertySheet ps)
This method is called when this configurable component needs to be reconfigured.
|
void |
removeSignalListener(SignalListener listener)
Removes a listener for signals.
|
void |
setDataSource(DataProcessor dataSource)
Sets the source of data for this front end.
|
void |
setPredecessor(DataProcessor dataSource)
Sets the source of data for this front end.
|
java.lang.String |
toString()
Returns a description of this FrontEnd in the format: <front end name> {<DataProcessor1>, <DataProcessor2> ...
|
getPredecessor
getName, initLogger
@S4ComponentList(type=DataProcessor.class) public static final java.lang.String PROP_PIPELINE
public FrontEnd(java.util.List<DataProcessor> frontEndList)
public FrontEnd()
public void newProperties(PropertySheet ps) throws PropertyException
Configurable
newProperties
in interface Configurable
newProperties
in class ConfigurableAdapter
ps
- a property sheet holding the new dataPropertyException
- if there is a problem with the properties.public void initialize()
BaseDataProcessor
initialize
in interface DataProcessor
initialize
in class BaseDataProcessor
public void setDataSource(DataProcessor dataSource)
dataSource
- the source of datapublic java.util.List<DataProcessor> getElements()
DataProcessor
s of this FrontEnd
.public Data getData() throws DataProcessingException
getData()
on the last processor.getData
in interface DataProcessor
getData
in class BaseDataProcessor
DataProcessingException
- if a data processor error occurspublic void setPredecessor(DataProcessor dataSource)
setDataSource(dataSource)
.setPredecessor
in interface DataProcessor
setPredecessor
in class BaseDataProcessor
dataSource
- the source of datapublic void addSignalListener(SignalListener listener)
listener
- the listener to be addedpublic void removeSignalListener(SignalListener listener)
listener
- the listener to be removedprotected void fireSignalListeners(Signal signal)
signal
- the signal that occurredpublic DataProcessor getLastDataProcessor()
DataProcessor
chain of this FrontEnd
.public java.lang.String toString()
toString
in class ConfigurableAdapter