ABC
1
FilenameDemos featured inDescription
2
ml_generative_Gaussiandemo_multiclass_discrim, demo_multiclass_KDE, demo_multiclass_mix, demo_multiclass_NB, demo_multiclass_studentComputes the maximum likelihood Gaussian fit for the data. Targets y are expected to be empty and are ignored. The prediction function returns an [nTest, 1] vector with the likelihood of each data point in
the test set.
3
ml_generative_KDEdemo_multiclass_discrim, demo_multiclass_KDEComputes the maximum likelihood kernel density estimate fit for the data. Targets y are expected to be empty and are ignored. The prediction function returns an [nTest, 1] vector with the likelihood of each data point in the test set.
4
ml_generative_mixtureGaussiandemo_multiclass_discrim, demo_multiclass_mixFinds the best fit of k Gaussians to the data using Expectation Maximization. Targets y are expected to be empty and are ignored. The prediction function returns an [nTest, 1] vector with the likelihood of each data point in the test set.
5
ml_generative_NBdemo_multiclass_discrim, demo_multiclass_NBComputes the maximum likelihood Naive Bayes (Gaussian/categorical counts) fit for the data.Targets y are expected to be empty and are ignored. The prediction function returns an [nTest, 1] vector with the likelihood of each data point in the test set.
6
ml_generative_studentdemo_multiclass_discrim, demo_multiclass_studentComputes the maximum likelihood Student-t fit for the data. Targets y are expected to be empty and are ignored. The prediction function returns an [nTest, 1] vector with the likelihood of each data point in the test set
7
ml_multiclass_1v1demo_multiclass_v1Train C(C-1)/2 binary classifiers for a C-way multiclass problem; each receives the samples of a pair of classes from the original training dataset, and votes on the most probable class
8
ml_multiclass_1vAdemo_multiclass_v1Train C binary classifiers on C classes
9
ml_multiclass_baggingdemo_multiclass_baggingClassication based on the highest prediction among models trained on bootstrap samples of dataset.
10
ml_multiclass_basisdemo_multiclass_basis, demo_multiclass_multiclass_CVClassification with a basis change.
11
ml_multiclass_boostingdemo_multiclass_boostingImplements a SAMME AdaBoosting algorithm to boost a classifier (see in Zhu, Rosset, Zou, and Hastie 2006)
12
ml_multiclass_CVdemo_multiclass_multiclass_CVThis computes the "best" hyper-parameter(s) using cross-validation for classification and regression problems
13
ml_multiclass_decisionTreedemo_multiclass_decisionsA decision tree that classifies data into multiple class labels
14
ml_multiclass_ECOCdemo_multiclass_ECOCRelabel classes into binary forms, and use combination of binary classification submodels to predict multiclass labels
15
ml_multiclass_GDAdemo_multiclass_discrimClassification using a Gaussian generative model with shared full covariance matrices to fit each class
16
ml_multiclass_kernel_softmaxFits a classification model by minimizing the kernel softmax loss function
17
ml_multiclass_KNNdemo_multiclass_KNNAn object is classified by a majority vote of its neighbors, with the object being assigned to the class most common among its k nearest neighbors.
18
ml_multiclass_logisticdemo_multiclass_bagging, demo_multiclass_basis, demo_multiclass_KNN, demo_multiclass_multiclass_CVClassification using multinomial logistic regression
19
ml_multiclass_MLPdemo_multiclass_boostingClassification using a multilayer perceptron with softmax loss
20
ml_multiclass_stumpdemo_multiclass_decisionsFinds the best threshold across all features
21
ml_multiclass_SVMdemo_multiclass_SVMFits a linear classifier by maximizing the margin using SVM
22
ml_multiclass_CNNdemo_multiclass_CNNFinds optimal set of parameters for simple convolutional neural network in multiclass classification regime.