Uses of Interface
hhreco.classification.Classifier

Packages that use Classifier
hhreco.classification This package provides data structures such as feature sets, training sets, as well as a classification framework for facilitating pattern classification tasks. 
 

Uses of Classifier in hhreco.classification
 

Subinterfaces of Classifier in hhreco.classification
 interface TrainableClassifier
          This classifier trains on a data set and performs classification based on what it has seen.
 

Classes in hhreco.classification that implement Classifier
 class KNNClassifier
          This K-nearest neighbor classifier compares a test example with every example in the training set by computing the normalized Euclidean distance.
 class MMDClassifier
          Minimum distance classifier measures the normalized Euclidean distance between the test example and each of the training classes.
 class SVMClassifier
          This class uses libsvm, a SVM software library written in Java, to do SVM classification.