AutoNFS
AutoNFS is a deep learning model that can be used to select the most important features from a given dataset. The model is based on the Gumbel-Sigmoid distribution.
Adaptive balance
balance trades feature-selection aggressiveness against risk of mask collapse. Default is
auto (adaptive). Pass balance="auto" to back off automatically per-dataset if
1.0 collapses or underperforms; see autonfs/adaptive.py and the HPO study report/addendum.
Installation
To install the package, you can use pip:
pip install autonfs
Usage examples
Basic usage
from autonfs import AutoNFS
from sklearn.datasets import load_breast_cancer
breast = load_breast_cancer()
X = breast.data
y = breast.target
gfs = AutoNFS()
X = gfs.fit_transform(X, y)
print(gfs.support_)
print(gfs.scores_)
Performance verification
from autonfs import AutoNFS
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import balanced_accuracy_score
DEVICE = "cpu"
breast = load_breast_cancer()
X = breast.data
y = breast.target
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
clf = RandomForestClassifier(random_state=42)
clf.train(X_train, y_train)
orig_score = balanced_accuracy_score(y_test, clf.predict(X_test))
print(f"Original score: {orig_score:.3f}. Original features: {X.shape[1]}")
# Original score: 0.958. Original features: 30
gfs = AutoNFS(verbose=True, device=DEVICE)
gfs.fit(X_train, y_train)
X_transformed = gfs.transform(X_train)
X_test_transformed = gfs.transform(X_test)
clf.fit(X_transformed, y_train)
y_pred = clf.predict(X_test_transformed)
score = balanced_accuracy_score(y_test, y_pred)
logger.info(f"Score after feature selection: {score}. Selected features: {sum(gfs.support_)}")
# Score after feature selection: 0.958. Selected features: 3
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autonfs-1.0.0.tar.gz.
File metadata
- Download URL: autonfs-1.0.0.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.13.1 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fef72b9047edc3408494c5ba1a9c6300ba0bbd42947b6b763a9d1969633d2b7b
|
|
| MD5 |
77fe928d01e4ec54e2585b41702dee47
|
|
| BLAKE2b-256 |
c8de459450468d32fae5943fdc1deb5716b865babbbd4f5d240249597922abc7
|
File details
Details for the file autonfs-1.0.0-py3-none-any.whl.
File metadata
- Download URL: autonfs-1.0.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.13.1 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83e17effbabb9ece6fde877018a51b8a03b09bc2b9ee3e1f5b709729e9e18dc4
|
|
| MD5 |
aa6e38ce5ac4e56deb6bf6b354c8cd0d
|
|
| BLAKE2b-256 |
1df76c00c5a91464b17bdc3bb62dfa618350e6f4407592a3ee24320a8a593712
|