Uses of Interface
SVM.SVMTrainable

Packages that use SVMTrainable
benchmark Classes that benchmark the system. 
SVM Executing SVM, and functions to test/benchmark SVM capability 
Util Lots of classes that are used throughout the engine, and could possibly be used in another project. 
 

Uses of SVMTrainable in benchmark
 

Classes in benchmark that implement SVMTrainable
 class KnownReuters
          Reuters article that we know the classifications of from the MySQL DB
 

Uses of SVMTrainable in SVM
 

Method parameters in SVM with type arguments of type SVMTrainable
static void SVMManager.classifyEverything(java.util.List<? extends SVMTrainable> knowns)
          Classify all documents in a fashion that minimizes maximum memory usage.
This is done by first computing the SVM for all 9 categories, and then iterating on each document (doing all 9 categories per document before moving on to the next document).
static void SVMManager.runActiveLearner(java.util.List<? extends SVMTrainable> knowns)
           
 

Constructor parameters in SVM with type arguments of type SVMTrainable
SVMManager(java.util.List<? extends SVMTrainable> trainlist, java.util.List<? extends SVMTestable> testlist)
           
 

Uses of SVMTrainable in Util
 

Classes in Util that implement SVMTrainable
 class KnownDoc
          Repsents documents that are from the training set