Uses of Class
de.jstacs.classifier.scoringFunctionBased.gendismix.LearningPrinciple

Packages that use LearningPrinciple
de.jstacs.classifier.scoringFunctionBased.gendismix Provides an implementation of a classifier that allows to train the parameters of a set of NormalizableScoringFunctions by a unified generative-discriminative learning principle 
de.jstacs.classifier.scoringFunctionBased.sampling Provides the classes for AbstractScoreBasedClassifiers that are based on SamplingScoringFunctions and that sample parameters using the Metropolis-Hastings algorithm. 
 

Uses of LearningPrinciple in de.jstacs.classifier.scoringFunctionBased.gendismix
 

Methods in de.jstacs.classifier.scoringFunctionBased.gendismix that return LearningPrinciple
static LearningPrinciple LearningPrinciple.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LearningPrinciple[] LearningPrinciple.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.jstacs.classifier.scoringFunctionBased.gendismix with parameters of type LearningPrinciple
static double[] LearningPrinciple.getBeta(LearningPrinciple key)
          This method returns the standard weights for a predefined key.
 

Constructors in de.jstacs.classifier.scoringFunctionBased.gendismix with parameters of type LearningPrinciple
GenDisMixClassifier(GenDisMixClassifierParameterSet params, LogPrior prior, LearningPrinciple key, NormalizableScoringFunction... score)
          This convenience constructor creates an array of weights for an elementary learning principle and calls the main constructor.
 

Uses of LearningPrinciple in de.jstacs.classifier.scoringFunctionBased.sampling
 

Constructors in de.jstacs.classifier.scoringFunctionBased.sampling with parameters of type LearningPrinciple
SamplingGenDisMixClassifier(SamplingGenDisMixClassifierParameterSet params, BurnInTest burnInTest, double[] classVariances, LogPrior prior, LearningPrinciple principle, SamplingScoringFunction... scoringFunctions)
          Creates a new SamplingGenDisMixClassifier using the external parameters params, a burn-in test, a set of sampling variances for the different classes, a prior on the parameters, a learning principle, and scoring functions that model the distribution for each of the classes.