Uses of Class
hhreco.classification.ClassifierException

Packages that use ClassifierException
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 ClassifierException in hhreco.classification
 

Methods in hhreco.classification that throw ClassifierException
 void TrainableClassifier.train(TrainingSet s, int numFeatures)
          Train the classifier with a given training set.
 Classification SVMClassifier.classify(FeatureSet fs)
          Classify the given example using SVM.
 void SVMClassifier.train(TrainingSet tset, int numFeatures)
          Convert TraininSet examples into libsvm data structure, build a svm_problem object for the training set, and call svm_train to compute the svm model.
 Classification MMDClassifier.classify(FeatureSet s)
          Classify the given example by computing the normalized Euclidean distance to each training class.
 void MMDClassifier.train(TrainingSet s, int numFeatures)
          Train the classifier with the given training set.
 Classification KNNClassifier.classify(FeatureSet s)
          Classify the given example by testing it against each example in the training set.
 void KNNClassifier.train(TrainingSet s, int numFeatures)
          Train the classifier with a given training set.
 Classification Classifier.classify(FeatureSet s)
          Return a classification for the specified feature set, or throw a runtime exception if the given feature set does not have the same number of features as the training examples.