Uses of Interface
calhoun.analysis.crf.CRFInference

Packages that use CRFInference
calhoun.analysis.crf the interface, main Conrad class, and solver for the Conrad engine. 
calhoun.analysis.crf.solver training and inference algorithms used in the CRF engine 
 

Uses of CRFInference in calhoun.analysis.crf
 

Methods in calhoun.analysis.crf that return CRFInference
 CRFInference Conrad.getInference()
          returns the configured inference algorithm which will be used to predict hidden states for new inputs once the model is trained.
 

Methods in calhoun.analysis.crf with parameters of type CRFInference
 void Conrad.setInference(CRFInference inference)
          sets the inference algorithm.
 

Uses of CRFInference in calhoun.analysis.crf.solver
 

Classes in calhoun.analysis.crf.solver that implement CRFInference
 class SemiMarkovViterbi
          viterbi algorithm for semi-Markov CRFs.
 class SemiMarkovViterbiNoCache
          viterbi algorithm for semi-Markov CRFs.
 class Viterbi