AbstractNaiveBayesClassifierImpl |
A simple, scalable Naive Bayes Classifier, based on a key-value store (in
memory, or disk-based)
|
AbstractNaiveBayesClassifierLevelDBImpl |
A persistent Naive Bayes Classifier, based on LevelDB key-value store.
|
AbstractNaiveBayesClassifierMapImpl |
A simple, scalable Naive Bayes Classifier, based on a key-value store (in
memory using ConcurrentHashMap, or disk-based using org.mapdb.HTreeMap)
|
AbstractNaiveBayesClassifierRocksDBImpl |
A persistent Naive Bayes Classifier, based on RocksDB key-value store.
|
AbstractNaiveBayesImpl |
Functions common to the Naive Bayes Classifier and the Explainer
|
ClassifyException |
Classification exception (except persistence related).
|
IClassification |
Classification output : class probabilities and (optionally) the features and counters for explanation / audit trail
|
IClassificationExplained |
Contains additional details on the classifications, such as the formulas or the algebraic calculation.
|
IClassProbability |
Classification output and probability estimate.
|
INaiveBayesClassifier |
Naive Bayes Classifier interface
|
INaiveBayesExplainer |
Explain the details of the classification, ie.
|
PersistentClassifierException |
Exception raised by the KeyValue backend
|