Sautrela

Uses of Class
edu.gtts.sautrela.wfsa.Trainer.Method

Packages that use Trainer.Method
edu.gtts.sautrela.wfsa Provides classes for Markov modeling
 

Uses of Trainer.Method in edu.gtts.sautrela.wfsa
 

Methods in edu.gtts.sautrela.wfsa that return Trainer.Method
 Trainer.Method Trainer.getMethod()
          Getter for property method.
static Trainer.Method Trainer.Method.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Trainer.Method[] Trainer.Method.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in edu.gtts.sautrela.wfsa with parameters of type Trainer.Method
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
 void Trainer.setMethod(Trainer.Method method)
          Setter for property method.
 


Sautrela