API Reference

Transformers

NeuralClassificationTransformer(network, ...)

A class used to transform data from a category to a specialized representation.

TreeClassificationTransformer([kwargs])

A class used to transform data from a category to a specialized representation.

Voters

TreeClassificationVoter([kappa, classes])

A class used to vote on data transformed under a tree, which inherits from the BaseClassificationVoter class in base.py.

KNNClassificationVoter([k, kwargs, classes])

A class used to vote on data under any transformer outputting data in continuous Euclidean space, which inherits from the BaseClassificationVoter class in base.py.

Deciders

SimpleArgmaxAverage([classes])

A class for a decider that uses the average vote for classification.

Progressive_Learner

ClassificationProgressiveLearner([...])

A (mostly) internal class for progressive learning in the classification setting.

Forest

LifelongClassificationForest([...])

A class used to represent a lifelong classification forest.

Network

LifelongClassificationNetwork(network[, ...])

A class for progressive learning using Lifelong Learning Networks in a classification setting.