Reference implementation of LassoNet
Project description
LassoNet
LassoNet is a new family of models to incorporate feature selection and neural networks.
LassoNet works by adding a linear skip connection from the input features to the output. A L1 penalty (LASSO-inspired) is added to that skip connection along with a constraint on the network so that whenever a feature is ignored by the skip connection, it is ignored by the whole network.
Installation
pip install lassonet
Usage
We have designed the code to follow scikit-learn's standards to the extent possible (e.g. linear_model.Lasso).
from lassonet import LassoNetClassifierCV
model = LassoNetClassifierCV() # LassoNetRegressorCV
path = model.fit(X_train, y_train)
print("Best model scored", model.score(X_test, y_test))
print("Lambda =", model.best_lambda_)
You should always try to give normalized data to LassoNet as it uses neural networks under the hood.
You can read the full documentation or read the examples that cover most features.
Features
- regression, classification, Cox regression and interval-censored Cox regression with
LassoNetRegressor
,LassoNetClassifier
,LassoNetCoxRegressor
andLassoNetIntervalRegressor
. - cross-validation with
LassoNetRegressorCV
,LassoNetClassifierCV
,LassoNetCoxRegressorCV
andLassoNetIntervalRegressorCV
- stability selection with
model.stability_selection()
- group feature selection with the
groups
argument lambda_start="auto"
heuristic (default)
Note that cross-validation, group feature selection and automatic lambda_start
selection have not been published in papers, you can read the code or post as issue to request more details.
We are currently working (among others) on adding support for convolution layers, auto-encoders and online logging of experiments.
Cross-validation
The original paper describes how to train LassoNet along a regularization path. This requires the user to manually select a model from the path and made the .fit()
method useless since the resulting model is always empty. This feature is still available with the .path()
method for any model or the lassonet_path
function and returns a list of checkpoints that can be loaded with .load()
.
Since then, we integrated support for cross-validation (5-fold by default) in the estimators whose name ends with CV
. For each fold, a path is trained. The best regularization value is then chosen to maximize the average performance over all folds. The model is then retrained on the whole training dataset to reach that regularization.
Website
LassoNet's website is https:lasso-net.github.io/. It contains many useful references including the paper, live talks and additional documentation.
References
- Lemhadri, Ismael, Feng Ruan, Louis Abraham, and Robert Tibshirani. "LassoNet: A Neural Network with Feature Sparsity." Journal of Machine Learning Research 22, no. 127 (2021). pdf bibtex
- Yang, Xuelin, Louis Abraham, Sejin Kim, Petr Smirnov, Feng Ruan, Benjamin Haibe-Kains, and Robert Tibshirani. "FastCPH: Efficient Survival Analysis for Neural Networks." In NeurIPS 2022 Workshop on Learning from Time Series for Health. pdf
- Meixide, Carlos García, Marcos Matabuena, Louis Abraham, and Michael R. Kosorok. "Neural interval‐censored survival regression with feature selection." Statistical Analysis and Data Mining: The ASA Data Science Journal 17, no. 4 (2024): e11704. pdf
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
Built Distribution
File details
Details for the file lassonet-0.0.19.tar.gz
.
File metadata
- Download URL: lassonet-0.0.19.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75b1ec6b9a1ba657a9f77b8b430fa9e6f977d770dc5dde8b3d9b0567fb82869e |
|
MD5 | 8dd925d1fe1899230cdc9d925c94f187 |
|
BLAKE2b-256 | 83198fd0359b16358c49e8eea2744530c9078a564ddaa2ca51600b3d88248ea4 |
File details
Details for the file lassonet-0.0.19-py3-none-any.whl
.
File metadata
- Download URL: lassonet-0.0.19-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5029ecc8700b017c30c07e7ee944ef6a6bec491523e59f9858f3f471521baada |
|
MD5 | 2aaa34dd7dc426ed0fd1f83fab14c9c0 |
|
BLAKE2b-256 | 5486e73165184fb79ce95a1d30e2ab875951dd28b87537330fea3e8a79911311 |