Skip to main content

A package for feature selection using Subsampling Winner Algorithm

Project description

subsamp Feature Selection with Subsampling Winner Algorithm

Subsampling Winner Algorithm (SWA)

SubsampWinner is a Python package that implements the Subsampling Winner Algorithm (SWA) for feature selection in high-dimensional datasets. It includes a robust double assurance procedure to enhance stability and reliability in feature selection.

Features

  • Subsampling Winner Algorithm (SWA) for efficient feature selection;
  • Double Assurance procedure for improved stability;
  • Support for both homoskedastic and heteroskedastic data;
  • Parallel processing capabilities for improved performance;
  • Flexible parameter tuning and multiple testing correction methods.

Installation

You can install SubsampWinner using pip:

pip install subsampwinner

Quick Start

import numpy as np
from subsampwinner.subsamp import subsamp
from subsampwinner.SubsampDoubleAssurance import SubsampDoubleAssurance
from subsampwinner.GenerateData import generate_heteroskedastic_dat

# Generate sample data
n, p = 100, 80
beta0 = np.array([0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5])
beta0_index = np.arange(len(beta0))
beta = np.zeros(p)
beta[beta0_index] = beta0
gamma = np.zeros(p)

X, y, _, _ = generate_heteroskedastic_data(n, p, hetero_func=lambda x: 3, 
    beta=beta, gamma=gamma, type='diagonal')

# Initialize and run SWA
swa = subsamp(s=20, m=1000, qnum=15)
swa.fit(X, y)

print("Selected features:", swa.finalists)
# Run Double Assurance procedure
sda = SubsampDoubleAssurance(m=1000)
results = sda.double_assurance(X, y, s0=26, T=0.9, I_max=20, init_range=0.3, r=0.75)

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

subsampwinner-0.0.6.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

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

subsampwinner-0.0.6-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file subsampwinner-0.0.6.tar.gz.

File metadata

  • Download URL: subsampwinner-0.0.6.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for subsampwinner-0.0.6.tar.gz
Algorithm Hash digest
SHA256 b070777baaea2d695cecd8a77744d3d6c71affa1a04aef079d6c2f3d71512cbf
MD5 ffde96c395d16d1a16977970c00e60a3
BLAKE2b-256 ac94fdef2066b3d008b46422ba6c7e3bc376fec1c7896b1e5ea4fdef53ae6459

See more details on using hashes here.

File details

Details for the file subsampwinner-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: subsampwinner-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for subsampwinner-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a61227c9c721597883515c11ae285405c5922e139e2c3d1e4210522ccaaea8d0
MD5 b37cc56e6ff97faae4828ed8e03474ad
BLAKE2b-256 c127c991042aafc727461caaf4bc0f26ecce51bb3f46b54993aa18d53e567943

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