Represents a classifier from observations of type T to labels of type L.
This stupidly named class is a Label-Feature Matrix, which is to say that it's a the weight matrix used by most of the classifier trainers.
A LinearClassifier is a multi-class classifier with decision
function:
\hat y_i = \arg\max_y w_y^T x_i + b_y
A NeuralNetwork classifier uses a neural network to get unnormalize log probabilities for the scores of the classifier.
Implements a Naive-Bayes Classifer over bags of words.
This is the unindexed weights matrix: it acts as a tensor over the label types, rather than their indexed components
A multi-class logistic/softmax/maxent classifier.
This is an example app for creating a logistic classifier from data that is stored as string valued features and string valued labels, e.
Object for creating SupportVectorMachines
Main program that builds a classifier from a breeze.data.SparseFeatureDataset.