Sautrela

Uses of Interface
edu.gtts.sautrela.wfsa.State

Packages that use State
edu.gtts.sautrela.wfsa Provides classes for Markov modeling
edu.gtts.sautrela.wfsa.models   
 

Uses of State in edu.gtts.sautrela.wfsa
 

Classes in edu.gtts.sautrela.wfsa with type parameters of type State
 interface DWFSA<S extends State,Y extends Symbol,T extends Transition<S,Y>>
          Deterministic Weighted Finite-State Automata
 interface NdWFSA<S extends State,Y extends Symbol,T extends Transition<S,Y>>
          Non-Deterministic Weighted Finite-State Automata
 class Path<S extends State,T extends Transition<S,?>>
          A growable but non modificable List of Transitions
 interface Transition<S extends State,Y extends Symbol>
          Note: this interface has a natural ordering that is inconsistent with equals.
 interface WFSA<S extends State,Y extends Symbol,T extends Transition<S,Y>>
          Weighted Finite-State Automata
 

Methods in edu.gtts.sautrela.wfsa with type parameters of type State
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
Path<S,T>
Decoder.getPath(WFSA<S,Y,T> wfa, java.util.List<Y> symbolList, double beam, int verbose)
          Returns the state path or most probable state path for a given symbol list
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
double
Util.getProb(WFSA<S,Y,T> wfa, java.util.List<Y> obs)
           
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
double
Util.getProb(WFSA<S,Y,T> wfa, java.util.List<Y> obs, double beam)
           
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
double
Trainer.ML(WFSA<S,Y,T> wfa, java.util.Collection<java.util.List<Y>> data, Trainer.Method method, double beam, int verbose)
          Trains a WFSA using the Maximun Likelihood criteria
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
double
Trainer.ML(WFSA<S,Y,T> wfa, java.util.Collection<java.util.List<Y>> data, Trainer.Method method, double beam, int verbose, double mapCount)
          Trains a WFSA using the Maximun Likelihood criteria
static
<S extends State,Y extends Symbol,T extends Transition<S,Y>>
java.util.List<Y>
Util.randomSymbolList(WFSA<S,Y,T> wfa)
          Generates a random non-null list of Symbols for a WFSA.
 

Methods in edu.gtts.sautrela.wfsa that return types with arguments of type State
static WFSA<State,Symbol,Transition<State,Symbol>> Util.newWFSAInstance(org.xml.sax.InputSource is)
          Instantiates a WFSA using a XML description found via an InputSource
static WFSA<State,Symbol,Transition<State,Symbol>> Util.newWFSAInstance(org.xml.sax.InputSource is)
          Instantiates a WFSA using a XML description found via an InputSource
static WFSA<State,Symbol,Transition<State,Symbol>> Util.newWFSAInstance(org.xml.sax.InputSource is, Alphabet<Symbol> alphabet)
          Instantiates a WFSA using a XML description found via an InputSource and using an existing Alphabet.
static WFSA<State,Symbol,Transition<State,Symbol>> Util.newWFSAInstance(org.xml.sax.InputSource is, Alphabet<Symbol> alphabet)
          Instantiates a WFSA using a XML description found via an InputSource and using an existing Alphabet.
 

Uses of State in edu.gtts.sautrela.wfsa.models
 

Classes in edu.gtts.sautrela.wfsa.models with type parameters of type State
 class DefaultTransition<S extends State,Y extends Symbol>
           
 

Classes in edu.gtts.sautrela.wfsa.models that implement State
 class DefaultState
           
 class HMM.State
           
 class LMM.xState
           
 


Sautrela