Package edu.cmu.sphinx.linguist.acoustic.tiedstate

Examples of edu.cmu.sphinx.linguist.acoustic.tiedstate.SenoneSequence


        if ((state != null) && (state.isEmitting())) {
            // get the index and the HMM for this HMMState
            int stateIndex = state.getState();
            SenoneHMM hmm = (SenoneHMM) state.getHMM();
            // Get the senone sequence associated with this HMM
            SenoneSequence ss = hmm.getSenoneSequence();
            // Get the senone associated with this HMMState, located
            // in the stateIndex-th position in the senone sequence
            senone = ss.getSenones()[stateIndex];
            // After this, we need to go to the senone pool to find
            // out the senone id... Or maybe we can operate directly
            // on the senone
        }
        // Now, the probabilities
View Full Code Here

TOP

Related Classes of edu.cmu.sphinx.linguist.acoustic.tiedstate.SenoneSequence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.