Uses of Interface
cc.mallet.fst.semi_supervised.pr.constraints.PRConstraint

Packages that use PRConstraint
cc.mallet.fst.semi_supervised.pr   
cc.mallet.fst.semi_supervised.pr.constraints   
cc.mallet.fst.semi_supervised.tui   
 

Uses of PRConstraint in cc.mallet.fst.semi_supervised.pr
 

Methods in cc.mallet.fst.semi_supervised.pr that return PRConstraint
 PRConstraint PRAuxiliaryModel.getConstraint(int index)
           
 

Constructor parameters in cc.mallet.fst.semi_supervised.pr with type arguments of type PRConstraint
CRFTrainerByPR(CRF crf, java.util.ArrayList<PRConstraint> constraints)
           
CRFTrainerByPR(CRF crf, java.util.ArrayList<PRConstraint> constraints, int numThreads)
           
PRAuxiliaryModel(CRF baseModel, java.util.ArrayList<PRConstraint> constraints)
           
 

Uses of PRConstraint in cc.mallet.fst.semi_supervised.pr.constraints
 

Classes in cc.mallet.fst.semi_supervised.pr.constraints that implement PRConstraint
 class OneLabelL2IndPRConstraints
          A set of constraints on individual input feature label pairs.
 class OneLabelL2PRConstraints
          A set of constraints on distributions over single labels conditioned on the presence of input features.
 

Methods in cc.mallet.fst.semi_supervised.pr.constraints that return PRConstraint
 PRConstraint PRConstraint.copy()
          This is used in multi-threading.
 PRConstraint OneLabelL2PRConstraints.copy()
           
 PRConstraint OneLabelL2IndPRConstraints.copy()
           
 

Uses of PRConstraint in cc.mallet.fst.semi_supervised.tui
 

Method parameters in cc.mallet.fst.semi_supervised.tui with type arguments of type PRConstraint
static CRF SimpleTaggerWithConstraints.trainPR(InstanceList training, InstanceList testing, java.util.ArrayList<PRConstraint> constraints, CRF crf, TransducerEvaluator eval, int iterations, double var)
          Create and train a CRF model from the given training data, optionally testing it on the given test data.