SparseFiltering
statistics: SparseFiltering
Sparse filtering feature-extraction model.
A SparseFiltering object stores the transformation learned by
sparsefilt for extracting features from data. Create one with
sparsefilt; apply it to data with the transform method.
An object of this class has the following properties:
TransformWeights: the matrix of learned
transformation weights.
Mu, Sigma: the per-predictor mean and standard
deviation used when 'Standardize' is true (empty otherwise),
each a column vector with one entry per predictor.
FitInfo: a structure with the Iteration indices of
the fit and the Objective value at each of them, both column
vectors of the same length. Iteration counts from zero and
Objective(1) is the objective at the starting weights, so the last
entry of each is the solution the fit returned.
The values along that trajectory are this implementation’s own. Under the
default 'quasinewton' solver the minimisation runs through Octave’s
fminunc; 'Solver', 'lbfgs' selects the limited-memory BFGS
solver MATLAB uses. Either way the steps taken from the same starting
weights differ from MATLAB’s, so the length of the history and the
iteration counts differ, and on an objective this far from convex the
optimum reached need not be MATLAB’s either.
ModelParameters: a structure of the options used for the fit.
NumPredictors, NumLearnedFeatures: the input dimension
and the number of learned features .
InitialTransformWeights: the starting weights used by the fit.
See also: sparsefilt, rica
Source Code: SparseFiltering
The SparseFiltering class contains the following properties:
SparseFiltering.ModelParameters is not documented.
SparseFiltering.NumPredictors is not documented.
SparseFiltering.NumLearnedFeatures is not documented.
SparseFiltering.Mu is not documented.
SparseFiltering.Sigma is not documented.
SparseFiltering.FitInfo is not documented.
SparseFiltering.TransformWeights is not documented.
SparseFiltering.InitialTransformWeights is not documented.
The SparseFiltering class offers the following public methods:
statistics: Mdl = SparseFiltering (X, Q, …)
statistics: Z = transform (Mdl, X)