Sparse Principal Components Analysis (SparsePCA).
Finds the set of sparse components that can optimally reconstruct the data. The amount of sparseness is controllable by the coefficient of the L1 penalty, given by the parameter alpha.
Read more in the User Guide.
Number of sparse atoms to extract. If None, then n_components
is set to n_features
.
Sparsity controlling parameter. Higher values lead to sparser components.
Amount of ridge shrinkage to apply in order to improve conditioning when calling the transform method.
Maximum number of iterations to perform.
Tolerance for the stopping condition.
Method to be used for optimization. lars: uses the least angle regression method to solve the lasso problem (linear_model.lars_path) cd: uses the coordinate descent method to compute the Lasso solution (linear_model.Lasso). Lars will be faster if the estimated components are sparse.
Number of parallel jobs to run. None
means 1 unless in a joblib.parallel_backend
context. -1
means using all processors. See Glossary for more details.
Initial values for the loadings for warm restart scenarios. Only used if U_init
and V_init
are not None.
Initial values for the components for warm restart scenarios. Only used if U_init
and V_init
are not None.
Controls the verbosity; the higher, the more messages. Defaults to 0.
Used during dictionary learning. Pass an int for reproducible results across multiple function calls. See Glossary.
Sparse components extracted from the data.
Vector of errors at each iteration.
Estimated number of components.
Added in version 0.23.
Number of iterations run.
Per-feature empirical mean, estimated from the training set. Equal to X.mean(axis=0)
.
Number of features seen during fit.
Added in version 0.24.
n_features_in_
,)
Names of features seen during fit. Defined only when X
has feature names that are all strings.
Added in version 1.0.
See also
PCA
Principal Component Analysis implementation.
MiniBatchSparsePCA
Mini batch variant of SparsePCA
that is faster but less accurate.
DictionaryLearning
Generic dictionary learning problem using a sparse code.
Examples
>>> import numpy as np >>> from sklearn.datasets import make_friedman1 >>> from sklearn.decomposition import SparsePCA >>> X, _ = make_friedman1(n_samples=200, n_features=30, random_state=0) >>> transformer = SparsePCA(n_components=5, random_state=0) >>> transformer.fit(X) SparsePCA(...) >>> X_transformed = transformer.transform(X) >>> X_transformed.shape (200, 5) >>> # most values in the components_ are zero (sparsity) >>> np.mean(transformer.components_ == 0) np.float64(0.9666)
Fit the model from data in X.
Training vector, where n_samples
is the number of samples and n_features
is the number of features.
Not used, present here for API consistency by convention.
Returns the instance itself.
Fit to data, then transform it.
Fits transformer to X
and y
with optional parameters fit_params
and returns a transformed version of X
.
Input samples.
Target values (None for unsupervised transformations).
Additional fit parameters.
Transformed array.
Get output feature names for transformation.
The feature names out will prefixed by the lowercased class name. For example, if the transformer outputs 3 features, then the feature names out are: ["class_name0", "class_name1", "class_name2"]
.
Only used to validate feature names with the names seen in fit
.
Transformed feature names.
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
A MetadataRequest
encapsulating routing information.
Get parameters for this estimator.
If True, will return the parameters for this estimator and contained subobjects that are estimators.
Parameter names mapped to their values.
Transform data from the latent space to the original space.
This inversion is an approximation due to the loss of information induced by the forward decomposition.
Added in version 1.2.
Data in the latent space.
Reconstructed data in the original space.
Set output container.
See Introducing the set_output API for an example on how to use the API.
Configure output of transform
and fit_transform
.
"default"
: Default output format of a transformer
"pandas"
: DataFrame output
"polars"
: Polars output
None
: Transform configuration is unchanged
Added in version 1.4: "polars"
option was added.
Estimator instance.
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as Pipeline
). The latter have parameters of the form <component>__<parameter>
so that it’s possible to update each component of a nested object.
Estimator parameters.
Estimator instance.
Least Squares projection of the data onto the sparse components.
To avoid instability issues in case the system is under-determined, regularization can be applied (Ridge regression) via the ridge_alpha
parameter.
Note that Sparse PCA components orthogonality is not enforced as in PCA hence one cannot use a simple linear projection.
Test data to be transformed, must have the same number of features as the data used to train the model.
Transformed data.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4