ReconstructionICA
statistics: ReconstructionICA
Reconstruction independent component analysis (RICA) feature-extraction model.
A ReconstructionICA object stores the transformation learned by
rica for extracting features from data. Create one with rica;
apply it to data with the transform method.
An object of this class has the following properties:
TransformWeights: the matrix of learned
transformation weights (unit-length columns).
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: rica, sparsefilt
Source Code: ReconstructionICA
The ReconstructionICA class contains the following properties:
ReconstructionICA.ModelParameters is not documented.
ReconstructionICA.NumPredictors is not documented.
ReconstructionICA.NumLearnedFeatures is not documented.
ReconstructionICA.Mu is not documented.
ReconstructionICA.Sigma is not documented.
ReconstructionICA.FitInfo is not documented.
ReconstructionICA.TransformWeights is not documented.
ReconstructionICA.InitialTransformWeights is not documented.
The ReconstructionICA class offers the following public methods:
statistics: Mdl = ReconstructionICA (X, Q, …)
statistics: Z = transform (Mdl, X)