Skip to main content

bess Python Package

Project description

Bess: An python Package for Best Subset Selection in Linear and Logistic Model

Introduction

One of the main tasks of statistical modeling is to exploit the association between a response variable and multiple predictors. Linear model (LM), as a simple parametric regression model, is often used to capture linear dependence between response and predictors. The anothe model--generalized linear model (GLM), can be considered as the extensions of linear model, depending on the types of responses. Parameter estimation in these models can be computationally intensive when the number of predictors is large. Meanwhile, Occam鈥檚 razor is widely accepted as a heuristic rule for statistical modeling, which balances goodness of 铿乼 and model complexity. This rule leads to a relative small subset of important predictors.

bess package provides solutions for best subset selection problem for sparse LM, and GLM models.

We consider a primal-dual active set (PDAS) approach to exactly solve the best subset selection problem for sparse LM, GLM and CoxPH models. The PDAS algorithm for linear least squares problems was 铿乺st introduced by Ito and Kunisch (2013) and later discussed by Jiao, Jin, and Lu (2015) and Huang, Jiao, Liu, and Lu (2017). It utilizes an active set updating strategy and 铿乼s the sub-models through use of complementary primal and dual variables. We generalize the PDAS algorithm for general convex loss functions with the best subset constraint, and further extend it to support both sequential and golden section search strategies for optimal k determination.

Install

Python Version

  • python >= 3.5

Modules needed

  • numpy

The package has been publish in PyPI. You can easy install by:

$ pip install bess

Example

>>> from bess.bess import *
>>> import numpy as np
>>> np.random.seed(123)   # fix seed to get the same result

### Data information
>>> train_X = np.random.normal(0, 1, 10 * 5).reshape((10, 5))     # train_x
>>> train_y = np.random.normal(0, 1, 10)                          # train_y
>>> test_X = np.random.normal(0, 1, 10 * 5).reshape((10, 5))      # test_x
>>> data_type = 1   #data_type: 1:regression 2:2-classification

### Model information.
>>> sequence = [1, 2, 3]
>>> model = SPDAS_LM(sequence=sequence)

### Fit model.
>>> model.fit(train_X, train_y, data_type)

### Predict.
>>> model.predict(test_X)
[0.8487986542970937, -0.3262548528320405, -1.2427679709665753, -1.1018898695690327, -1.1589700150336006, 0.9170341511542658, -0.7894714094101583, -0.40658125651728766, -0.5161022067202307, -0.17317826396384567]

Reference

Bug report

Connect to @Jiang-Kangkang, or send an email to Jiang Kangkang(jiangkk3@mail2.sysu.edu.cn)

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

bess-0.0.3.tar.gz (923.8 kB view hashes)

Uploaded Source

Built Distribution

bess-0.0.3-cp38-cp38-win_amd64.whl (350.6 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

Supported by

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