Uses of Class
de.jstacs.classifier.AbstractScoreBasedClassifier

Packages that use AbstractScoreBasedClassifier
de.jstacs.classifier This package provides the framework for any classifier. 
de.jstacs.classifier.modelBased Provides the classes for Classifiers that are based on Model
de.jstacs.classifier.scoringFunctionBased Provides the classes for Classifiers that are based on ScoringFunctions. 
de.jstacs.classifier.scoringFunctionBased.cll Provides the implementation of the log conditional likelihood as an OptimizableFunction and a classifier that uses log conditional likelihood or supervised posterior to learn the parameters of a set of ScoringFunctions 
de.jstacs.classifier.utils Provides some useful classes for working with classifiers 
de.jstacs.models.discrete.inhomogeneous.shared   
 

Uses of AbstractScoreBasedClassifier in de.jstacs.classifier
 

Subclasses of AbstractScoreBasedClassifier in de.jstacs.classifier
 class MappingClassifier
          This class allows the user to train the classifier on a given number of classes and to evaluate the classifier on a smaller number of classes by mapping classes together.
 

Methods in de.jstacs.classifier that return AbstractScoreBasedClassifier
 AbstractScoreBasedClassifier AbstractScoreBasedClassifier.clone()
           
 

Constructors in de.jstacs.classifier with parameters of type AbstractScoreBasedClassifier
MappingClassifier(AbstractScoreBasedClassifier classifier, int[] mapping)
          The main constructor.
 

Uses of AbstractScoreBasedClassifier in de.jstacs.classifier.modelBased
 

Subclasses of AbstractScoreBasedClassifier in de.jstacs.classifier.modelBased
 class ModelBasedClassifier
          This class is the main class for all model based classifiers.
 

Uses of AbstractScoreBasedClassifier in de.jstacs.classifier.scoringFunctionBased
 

Subclasses of AbstractScoreBasedClassifier in de.jstacs.classifier.scoringFunctionBased
 class ScoreClassifier
           
 

Uses of AbstractScoreBasedClassifier in de.jstacs.classifier.scoringFunctionBased.cll
 

Subclasses of AbstractScoreBasedClassifier in de.jstacs.classifier.scoringFunctionBased.cll
 class CLLClassifier
          This class implements the conditional log likelihood classifier.
 

Uses of AbstractScoreBasedClassifier in de.jstacs.classifier.utils
 

Methods in de.jstacs.classifier.utils with parameters of type AbstractScoreBasedClassifier
static ImageResult ClassificationVisualizer.getScatterplot(AbstractScoreBasedClassifier cl1, AbstractScoreBasedClassifier cl2, Sample class0, Sample class1, REnvironment e, boolean drawThreshold)
          This method returns an ImageResult containing a scatter plot of the scores for the given classifiers cl1,cl2.
static ImageResult ClassificationVisualizer.plotScores(AbstractScoreBasedClassifier cl, Sample class0, Sample class1, REnvironment e, int bins, double density, String plotOptions)
          This method returns an ImageResult containing a plot of the histograms of the scores.
static void ClassificationVisualizer.plotScores(AbstractScoreBasedClassifier cl, Sample class0, Sample class1, REnvironment e, int bins, double density, String plotOptions, String fName)
          This method creates a pdf containing a plot of the histograms of the scores.
 

Uses of AbstractScoreBasedClassifier in de.jstacs.models.discrete.inhomogeneous.shared
 

Subclasses of AbstractScoreBasedClassifier in de.jstacs.models.discrete.inhomogeneous.shared
 class SharedStructureClassifier
          This class enables you to learn the structure on all classes together.