Sparse linear regression models
Project description
Sparse Linear Regression Models
sparse-lm includes several (structured) sparse linear regression estimators that are absent in the
sklearn.linear_model
module. The estimators in sparse-lm are designed to fit right into
scikit-learn, but the underlying optimization problem is expressed and
solved by leveraging cvxpy.
Available regression models
- Lasso, Group Lasso, Overlap Group Lasso, Sparse Group Lasso & Ridged Group Lasso.
- Adaptive versions of Lasso, Group Lasso, Overlap Group Lasso, Sparse Group Lasso & Ridged Group Lasso.
- Best Subset Selection, Ridged Best Subset, L0, L1L0 & L2L0 (all with optional grouping of parameters)
Basic usage
If you already use scikit-learn, using sparse-lm will be very easy. Just use any model like you would any linear model in scikit-learn:
import numpy as np
from sklearn.datasets import make_regression
from sklearn.model_selection import GridSearchCV
from sparselm import AdaptiveLasso
X, y = make_regression(n_samples=200, n_features=5000, random_state=0)
alasso = AdaptiveLasso(fit_intercept=False)
param_grid = {'alpha': np.logsppace(-7, -2)}
cvsearch = GridSearchCV(alasso, param_grid)
cvsearch.fit(X, y)
print(cvsearch.best_params_)
For more details on use and functionality see the documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sparse-lm-0.5.0.tar.gz
(489.6 kB
view details)
File details
Details for the file sparse-lm-0.5.0.tar.gz
.
File metadata
- Download URL: sparse-lm-0.5.0.tar.gz
- Upload date:
- Size: 489.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18bc27ed663e6cc24e6f5f05ebba1053775ac2de58dcd7d54c40d71351092b97 |
|
MD5 | 8a613e6843d1b475d2819e74b714544e |
|
BLAKE2b-256 | f6ed616a09bee43e82a32db61cb61fa4a165bcf52ad552bc84833aa456e64c5f |