MLpp
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 Nml
 NClusteringMethods and classes for clustering algorithms
 CCentroidsInitialiserChooses initial locations of centroids
 CClosestCentroidInitialises centroids and then assigns the responsibility for each point to its closest centroid
 CForgyChooses random points as new centroids
 CKMeansNaive K-means clustering method
 CKPPImplements the K++ algorithm
 CModelAbstract clustering model
 CRandomPartitionAssigns points to clusters randomly and then returns cluster means
 CResponsibilitiesInitialiserChooses initial component responsibilities
 NDecisionTreesHelper functions and classes for decision trees
 CLeafNodeTerminal node, which returns a constant prediction value for features which ended up on it
 CNodeTree node. Nodes are split (non-terminal) or leaf (terminal)
 CSplitNodeNon-terminal node, which splits data depending on a threshold value of some feature
 NKernelsMethods and classes for working with kernels
 CDifferentiableKernelAbstract differentiable R^D kernel interface
 CDifferentiableRadialBasisFunctionDifferentiable radial basis function kernel
 CDifferentiableRBFKernelDifferentiable radial basis function kernel
 CDoubleDifferentiableKernelAbstract double differentiable R^D kernel interface
 CDoubleDifferentiableRadialBasisFunctionDouble differentiable radial basis function kernel
 CGaussianRBFGaussian radial basis function
 CKernelAbstract R^D kernel interface
 CRadialBasisFunctionRadial basis function
 CRBFKernelRadial basis function kernel
 NLinearRegressionLinear regression algorithms
 CLassoRegressionResultResult of a multivariate Lasso regression with intercept.
 CMultivariateOLSResultResult of multivariate Ordinary Least Squares regression.
 CRecursiveMultivariateOLSRecursive multivariate Ordinary Least Squares
 CRegularisedRegressionResultResult of a multivariate regularised regression with intercept
 CResultResult of linear regression
 CRidgeRegressionResultResult of a multivariate ridge regression with intercept.
 CUnivariateOLSResultResult of 1D Ordinary Least Squares regression (with or without intercept)
 CAbstractLogisticRegressionAbstract implementation, sharing the common parameters and stopping criterion
 CBallTreeBall tree: an efficient tree structure for nearest-neighbour search in R^D space
 CConjugateGradientLogisticRegressionConjugate gradient logistic regression, as described in Sec. 4 of Thomas P. Minka, "A comparison of numerical optimizers for logistic regression"
 CDecisionTreeDecision tree
 CEMGaussian Expectation-Maximisation algorithm
 CLogisticRegressionBinomial logistic regression algorithm
 CResultResult of binomial logistic regression