Sparse linear regression models
Project description
Sparse Linear Regression Models
:warning: this package is currently largely lacking in unit-tests. Use at your own risk!
sparse-lm includes several regularized regression estimators that are absent in the
sklearn.linear_model
module. The estimators in sparse-lm are designed to fit right into
scikit-lean by inheriting from their base
LinearModel
. But the underlying optimization problem is expressed and solved by
leveraging cvxpy.
Available regression models
- Ordinary Least Squares (
sklearn
may be a better option) - Lasso (
sklearn
may be a better option) - Group Lasso, Overlap Group Lasso & Sparse Group Lasso
- Adaptive versions of Lasso, Group Lasso, Overlap Group Lasso & Sparse Group Lasso
- Best subset selection, ridged best subset, L0, L1L0 & L2L0
(
gurobi
recommended for performance) - Best group selection, ridged best group selection, grouped L0, grouped L2L0
(
gurobi
recommended for performance)
Installation
From pypi:
pip install sparse-lm
Usage
If you already use scikit-learn, using sparse-lm will be very easy
import numpy as np
from sklearn.datasets import make_regression
from sklearn.model_selection import GridSearchCV
from sparselm.model 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_)
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.2.0.tar.gz
(225.2 kB
view details)
Built Distribution
sparse_lm-0.2.0-py3-none-any.whl
(29.7 kB
view details)
File details
Details for the file sparse-lm-0.2.0.tar.gz
.
File metadata
- Download URL: sparse-lm-0.2.0.tar.gz
- Upload date:
- Size: 225.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c46a3118b39011cf576157aff26e012268c83e41eb0d8861b71407598ed2128f |
|
MD5 | 7e9dcb041ca7601f58fcfc6520f912b8 |
|
BLAKE2b-256 | 5bc641842971f2878e227f190a6a29d0e612ac7a7869754e7b8aeadbe3d50a94 |
File details
Details for the file sparse_lm-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: sparse_lm-0.2.0-py3-none-any.whl
- Upload date:
- Size: 29.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4baea51d8f33ae67ea7d92eb081fa8f1317b03588ae132301d89605a9b716410 |
|
MD5 | 5635e2cc4977e4faa38a1cb72fffcb55 |
|
BLAKE2b-256 | 2a78b34f64b34420bb5f271c01e4433020f157f2b22a6d1e9bbaa9f15ea762b3 |