Skip to main content

An end-to-end feature selection distribution with linear runtime(number of features) complexity.

Project description

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.

Installation

To install the package, you can use pip:

pip install gfs_network

Usage examples

Basic usage

from gfs_network import GFSNetwork
from sklearn.datasets import load_breast_cancer

breast = load_breast_cancer()
X = breast.data
y = breast.target

gfs = GFSNetwork()
X = gfs.fit_transform(X, y)

print(gfs.support_)
print(gfs.scores_)

Performance verification

from gfs_network import GFSNetwork
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 = GFSNetwork(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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autonfs-0.3.0.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autonfs-0.3.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file autonfs-0.3.0.tar.gz.

File metadata

  • Download URL: autonfs-0.3.0.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.8.0-64-generic

File hashes

Hashes for autonfs-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d763edf940461c3cb29241be9b81cfdca1806bc0d0b8fc6964eb0c235bb9681e
MD5 de526b6737ae6d780d49ba1aa75501ce
BLAKE2b-256 1240a51e57a876aec2a49757fbbb7edeb4dadf765fcf7d889b388d9853253f06

See more details on using hashes here.

File details

Details for the file autonfs-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: autonfs-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.8.0-64-generic

File hashes

Hashes for autonfs-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73ade20e55ce0a78cdb49810682704de52b616f13cd5a375dfcb674bb5ecaa28
MD5 b625fb84874b4fe74d351c5e5c6a4a78
BLAKE2b-256 bb0f9ba218641c12e7c597f31a781befe160649c3d318dc4d76fae8b6f3b16e5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page