Skip to main content

abess: Fast Best Subset Selection

Project description

logopic

Python build status R build status codecov Documentation Status cran pypi conda-forge pyversions License Codacy CodeFactor Platform Downloads

Overview

abess (Adaptive BEst Subset Selection) library aims to solve general best subset selection, i.e., find a small subset of predictors such that the resulting model is expected to have the highest accuracy. The selection for best subset shows great value in scientific researches and practical application. For example, clinicians wants to know whether a patient is health or not based on the expression level of a few of important genes.

This library implements a generic algorithm framework to find the optimal solution in an extremely fast way [1]. This framework now supports the detection of best subset under: linear regression, (multi-class) classification, censored-response modeling [2], multi-response modeling (a.k.a. multi-tasks learning), etc. It also supports the variants of best subset selection like group best subset selection [3] and nuisance best subset selection [4]. Especially, the time complexity of (group) best subset selection for linear regression is certifiably polynomial [1] [3].

Quick start

Install the stable abess Python package from Pypi:

$ pip install abess

Best subset selection for linear regression on a simulated dataset in Python:

from abess.linear import LinearRegression
from abess.datasets import make_glm_data
sim_dat = make_glm_data(n = 300, p = 1000, k = 10, family = "gaussian")
model = LinearRegression()
model.fit(sim_dat.x, sim_dat.y)

See more examples analyzed with Python in the tutorials; the notebooks are available here.

Runtime Performance

To show the power of abess in computation, we assess its timings of the CPU execution (seconds) on synthetic datasets, and compare to state-of-the-art variable selection methods. The variable selection and estimation results are deferred to performance.

We compare abess Python package with scikit-learn on linear and logistic regression. Results are presented in the below figure, and can be reproduce by running the commands in shell:

$ python ./simulation/Python/timings.py

we obtain the runtime comparison picture:

pic1

abess reaches a high efficient performance especially in linear regression where it gives the fastest solution.

Open source software

abess is a free software and its source code are publicly available in Github. The core framework is programmed in C++, and user-friendly R and Python interfaces are offered. You can redistribute it and/or modify it under the terms of the GPL-v3 License. We welcome contributions for abess, especially stretching abess to the other best subset selection problems.

Citation

If you use abess or reference our tutorials in a presentation or publication, we would appreciate citations of our library [5].

Jin Zhu, Liyuan Hu, Junhao Huang, Kangkang Jiang, Yanhang Zhang, Shiyun Lin, Junxian Zhu, Xueqin Wang (2022). “abess: A Fast Best Subset Selection Library in Python and R.” Journal of Machine Learning Research (Accepted).

The corresponding BibteX entry:

@article{zhu2022abess,
   author  = {Jin Zhu and Liyuan Hu and Junhao Huang and Kangkang Jiang and Yanhang Zhang and Shiyun Lin and Junxian Zhu and Xueqin Wang},
   title   = {abess: A Fast Best Subset Selection Library in Python and R},
   journal = {Journal of Machine Learning Research (Accepted)},
   year    = {2022}
}

References

Download files

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

Source Distribution

abess-0.4.7rc1.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

abess-0.4.7rc1-cp310-cp310-win_amd64.whl (538.3 kB view details)

Uploaded CPython 3.10Windows x86-64

abess-0.4.7rc1-cp310-cp310-win32.whl (490.5 kB view details)

Uploaded CPython 3.10Windows x86

abess-0.4.7rc1-cp310-cp310-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

abess-0.4.7rc1-cp310-cp310-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

abess-0.4.7rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

abess-0.4.7rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (487.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

abess-0.4.7rc1-cp310-cp310-macosx_11_0_arm64.whl (423.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

abess-0.4.7rc1-cp310-cp310-macosx_10_9_x86_64.whl (457.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

abess-0.4.7rc1-cp310-cp310-macosx_10_9_universal2.whl (833.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.7rc1-cp39-cp39-win_amd64.whl (538.2 kB view details)

Uploaded CPython 3.9Windows x86-64

abess-0.4.7rc1-cp39-cp39-win32.whl (490.5 kB view details)

Uploaded CPython 3.9Windows x86

abess-0.4.7rc1-cp39-cp39-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

abess-0.4.7rc1-cp39-cp39-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

abess-0.4.7rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

abess-0.4.7rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (487.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

abess-0.4.7rc1-cp39-cp39-macosx_11_0_arm64.whl (423.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

abess-0.4.7rc1-cp39-cp39-macosx_10_9_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

abess-0.4.7rc1-cp39-cp39-macosx_10_9_universal2.whl (833.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.7rc1-cp38-cp38-win_amd64.whl (538.1 kB view details)

Uploaded CPython 3.8Windows x86-64

abess-0.4.7rc1-cp38-cp38-win32.whl (490.5 kB view details)

Uploaded CPython 3.8Windows x86

abess-0.4.7rc1-cp38-cp38-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

abess-0.4.7rc1-cp38-cp38-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

abess-0.4.7rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

abess-0.4.7rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (487.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

abess-0.4.7rc1-cp38-cp38-macosx_11_0_arm64.whl (423.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

abess-0.4.7rc1-cp38-cp38-macosx_10_9_x86_64.whl (457.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

abess-0.4.7rc1-cp38-cp38-macosx_10_9_universal2.whl (833.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

abess-0.4.7rc1-cp37-cp37m-win_amd64.whl (538.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

abess-0.4.7rc1-cp37-cp37m-win32.whl (491.0 kB view details)

Uploaded CPython 3.7mWindows x86

abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (487.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

abess-0.4.7rc1-cp37-cp37m-macosx_10_9_x86_64.whl (457.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

abess-0.4.7rc1-cp36-cp36m-win_amd64.whl (538.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

abess-0.4.7rc1-cp36-cp36m-win32.whl (490.9 kB view details)

Uploaded CPython 3.6mWindows x86

abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (487.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

abess-0.4.7rc1-cp36-cp36m-macosx_10_9_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file abess-0.4.7rc1.tar.gz.

File metadata

  • Download URL: abess-0.4.7rc1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1.tar.gz
Algorithm Hash digest
SHA256 913ea4b11b8d94688e0c65a81d0bd00898a559db6384a067fd1bd0210d9ce13f
MD5 3769da5ed89876380e5606168c4d7212
BLAKE2b-256 6359b3e4f1fa29e46821ed9d16c29062faf593ed858c026f1bd48f0d0dc005b1

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 538.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72015e8f67886a179e6a9742b0ed0e18d6b176bbafc9ee2835fb6ff816c7a09d
MD5 e54376b8f5329362e7a889b5b4375a20
BLAKE2b-256 211633900b379548b4e4997a542d1d27c4d186b4b51878efcbd78c4129891cba

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ef8848907d490a086dac255c0d2a017e1b4d1d831ca40eabb9282166dcb8f32
MD5 fd358cd9a6d900de5f2c92d081bd88e6
BLAKE2b-256 ecbad14e1651f08e24765d5ad01cdec731ebc39bdc4577c4795266170b7c83ac

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 509b3c6e7fedc2836545c65d29253ce31ea1cc5c3beeadc6e95d22799b76b914
MD5 56cb519f897e1f2fe16dcc4798ce7a26
BLAKE2b-256 374acfc7bbf9e21ee314b6943fc276dc8928305f4fc7d118c1037172cb8deece

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e7ce3c8f0ba5916ed61fb8fd8819bfe131841ef14fa04b7e866bf849febabb99
MD5 ba889e1c4d615d0955595db9fbcbcb70
BLAKE2b-256 cdd72c2620c566d82239f142a507445498a2913348d135007e3ab13046e9c867

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f915db5c52da39027b5ae0f0b2877552a356d5ed9c5a62d1f3be55f82f0fa76
MD5 f92810c32f12bdf587d6639e78a532a1
BLAKE2b-256 6d8de93745edb0680f45cec1f8f977717d514696383282a3ef19ee460d225f0e

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d14a2d85b3339aca2dd17cf8f01874857417d4f57e149cc53590b421e6a4e3d3
MD5 309950deb8fecdb760f7490f14516cc2
BLAKE2b-256 6e0e0120a07405513947cbdf902c77cf9dbbc6f186f18798a787aed8c4b0e03e

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52963d194b8d81ce6d4c8f45837df915f98b947a8d0f66e7a750ad0bc7527e0f
MD5 e4aadc2ecd35574ce9a3199558eb9183
BLAKE2b-256 7b5e231e5e2d5c52a0fbf074ccf5e791a067d8fd9983f468d60149d65b74b781

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 786239bdecf8591ae2b4eb99b1665626b296aaa99480f54a8419a91b118a89b8
MD5 9d3187a678d208584d0f10d807fc36e5
BLAKE2b-256 4f890c6d140dbc2f2983c772147076d3c88bf8662c00fb6e9f674a424de4ecca

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bf4cd027becb0083dc2e07bc79a3c64dc0b19847cdaf03962f183135572eff63
MD5 b549fb708c9a68b156c25144a41b4a48
BLAKE2b-256 c3f907c902f3dea4fa7afdd515980cd9fb2d2254ca5448c368bdc3fb4d7527e0

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 538.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8d883b21f03838f68bf1d94e84771a787eb15b90845c940bec4184e71007cfc8
MD5 3a8ef5c8276f855b0703b0587772feed
BLAKE2b-256 bb6ec968410642b29331a23cff45399c364b853f41e0e35518fb5e6ccdcc45cb

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fe7037e959097d327b082a8bdb4007ff3cbf479c2df6c9784ca88e1763c824c5
MD5 d8670d42aee6ea00d9a9421926a82aeb
BLAKE2b-256 136adf65d09ac4513b2d2f23b285f7f5c268bb6e902252bbec0d70c9559f2da1

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 40b527251d6f189f62d0bd251d5d96785451c38e8ac946f2b0616b9da6d0a0d2
MD5 da15c2837b1acd3d77c58f66d0d41d90
BLAKE2b-256 07a719b4cad236501b4b4cabd28cbae1e34166aa68d9648e36067c8519073afa

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 66312df78b3a856a654c70028a023ca2665aaf2f02c45dbe64ea824aaefb4770
MD5 38b9d6447c95a8c9cbee03b7168332b4
BLAKE2b-256 8afd2a1a9e863b2381f91ecf829776caa36c31fe10cc3d12ebe6243aa3c93169

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f86255fda42007dfc673303d1dc8f100108c9570f4e043633528ce0a8bd53d8
MD5 1cfb6bca44393c2b41bff62dce3eec62
BLAKE2b-256 5e46e0aa27c18282db93d06d16c9aa1e35812d2d352300663fa1a444b4d59bbe

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2bfc9061453216bf4a4592672a099957deb9e9a67f968bbf3ac589f54843e85
MD5 dcd1569ac8d24d8a581bf9f577871945
BLAKE2b-256 efd5359be88ad1fbd83c8b8aae619be43aad1c52a51983bf0f82ac749c8448fc

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d08e9ba736b318d9f4a0d5bb6afc6f19146f104cbdff4734210d1674d403e46
MD5 192afcd08ac448e7fdb5d1f64cff4fad
BLAKE2b-256 2821dcaae739a13cf22e3c277eb3fd5a12c31213a047c10beec28032e890633a

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b7ebfbfffcc8f0e596ddda25b958c1723040e6ac4ce347ff5873a052902af94
MD5 a9e566f5935edc6a3ada59239b45bf0a
BLAKE2b-256 f7718c5d21f99a97f013a3f8151c7c17fb1cb432454eccb835d2c5e179d08bd3

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6d3521eb69304abe020df3107ca5cab26e8f4610472ec5a3ae898f4b6e7527cf
MD5 fa13f5d278906e4c369a883ebeca519f
BLAKE2b-256 2787b8a1b2395a7e08503f0845e9cf5dd40d1833e773cc16735f227144e548e0

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 538.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bf8f8e74acb26c1f48e575aa9b39c7c2eda8a39348124bdc670d540ba979214b
MD5 aec764e29604504207f3cdd30ee8510b
BLAKE2b-256 4d4580696277ec4f65e4598f0c6c7dde187af9ea1fbd2fe02fdbb769e3be4300

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aaae377e2b63a7e800dc24e6d331f5c30eef2562dff672a1fd71773d99521ff7
MD5 12c12c75ea453e9326fee86a10ef9c6a
BLAKE2b-256 6f74aef70883f91c2ce2407f06c0ab681584fa34f2c8b9512b9f03294cae85b8

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 403427ac4b482d529bb2d0e95b6c557cce208356f0e0991b1ff35c9b393488b2
MD5 864d01f1920252a24af3627f29a697c3
BLAKE2b-256 1bc77bf797c811075ca578add41706ce420065c97003b64889c2af92381b34eb

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 faf201e1458a3336c8dea4629af80237b2d964cc64737927a062f4d289275b56
MD5 93dd16a4573430a7e74604da9ac52b90
BLAKE2b-256 753fe8c7fb09857dd8eecaccc6cf1738be845865b02e74d09b60ed609a7bf994

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66e679fddf37847f6c16a39d8f1548eb242e6fbf8b0b436ef3262f493d20ac54
MD5 207e55549c4cdba238f7c31b6c0f91d8
BLAKE2b-256 b332fc48b710bd2d553eac6e1a38456fc1a8f4e28f5286d35aca621a9f68602d

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e3d891de7b2a9308587ea709fd9fc26b7fcc23830d7c83d85b85ee172ef9234
MD5 fa5d6361110ce7bff13afad46bac16c4
BLAKE2b-256 517b06f85fef4d509a1797f69b4783b1ea44c0ed61b33e9299b2a077cc265c91

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddbb4e9432c6d251f53900e5c0c9c96318c9b7daca4197db9924eb7a0826ac54
MD5 0d14fc3bb017bc267f02cce93f36f6e0
BLAKE2b-256 a9ff635dacb932d948e850882458a543e565b36f5a0b29a6954dfa82dd2be28e

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a575da1ff742a730e0e4173d25e330d5ffe7cc53698479fad53e73f615573e4f
MD5 da2c16faf8d95920cc728fe4ba71f02b
BLAKE2b-256 919194cfc2a268b082ecc1a85d96ade6e04e35c756180a8bd393daa19cf7e92a

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 df4ee1e09e496b0cd2bf701ec39a389bcc770e1f783252971c088d2e93bcbf67
MD5 b120106e98d48de4f0a7e2eb73bc40cf
BLAKE2b-256 d7af5068ea687d837740473c9ffde3b004a17350c00207053ced2b5ad875de05

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 538.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81bc2a10148c1bc1b69c138b00f1063fcc7b12d7298a2efef40c58e1eb4b69c8
MD5 24bddabdaddbf78d1871d599a1eb0fbb
BLAKE2b-256 bfc5387c71756179c03f11f2e4da9cb11d46f843cf7d142932dbf1e85ad40158

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 491.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aee88e8620a96e7c2a7bebdd7761435dcb568dc9a358fcb5d35e3bfe17d70a43
MD5 7efe7c4f84abc6975299776ef9978943
BLAKE2b-256 d10b2142d6b6964e83e864b0908bc59943dec4f10c88efb4b73283aa9153ae8d

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26d19e3034b13ecb30001e34af9f07ce7cc83170e37469dedebbf5898060fef9
MD5 57c2fe24262e998400a5abf104086e30
BLAKE2b-256 c6dc1eb5a895ff70ec3af48f7748579ce425aa3943060b626198e6557a78980f

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cc66f8a8e90d29bedaf904a9f9d8349a9b73c93b741df18eec5b40a6139f96e5
MD5 ff45b6f3c042938304428185fc558229
BLAKE2b-256 2774c0a37754e958f1138d17a0d76d0bdbbdd78911eeeeed1e014ddab02409b2

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94fed8ddb1f40672b0c7edf9f294ac69f66512d418ad51245b7adc7540183833
MD5 06f774c62925f38cd45254577fb0793d
BLAKE2b-256 bcddf4f614f3f1328475746ba9e1a63c0a376722f99f24f73cd2836654c53449

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a5ba3efaef00eb93e0b0f12191d61d3189852d65c5b4b014a00fe497cf9ae44
MD5 12f8e9aada0f14a1d6d1ee53b892820c
BLAKE2b-256 2a2468fc2f1892a30cfb734a7ed435f2873dcf64bd2b2ee5e7c373a2db852dd5

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de1219c0510f8545f417cc4e6ddf8b466456047f6eb4ce5226d383ab499f2eb4
MD5 3ba9758e3490910bd5eec892a47f3f2b
BLAKE2b-256 8df0a364525368658e1ddd0737fee389289e7cf4ddd046fbe802ae713d3282c7

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 13e12c448c3cba43a703b78352459792a7c96df1019f5a602408be65b7177d71
MD5 15977269f1d30581fdd06fbce6c026ec
BLAKE2b-256 84192914e51612254fe98238e1e3a88160800fdf8e13f572b9e1fe425bb72ee1

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: abess-0.4.7rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 490.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5fe08f22124a9dff4f0e318e37d85c6bc797a783d03bfba46675b0f37562b534
MD5 5bf6380f27843142db4110e0c12d45d6
BLAKE2b-256 7f2e7a02c860314e35add6161d3defaf64d90c06c8e3595a57c2e4aed4c4405a

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7488a1a6931a8aa62ffe516db9c3c98864dbee30ee18305ed71dedc84903b024
MD5 1047fce4c54de415ca1ccba29839232b
BLAKE2b-256 e9d7f7188f4c59cf1890b4717f1b59b0dc8ae458ed5df2a548b2a206e63f3f61

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f18699b62a62dfd3a260d2341d47a5b5179745ac55f64380eb7bf4df3faa2025
MD5 42ad038e3828951327c1908597438051
BLAKE2b-256 c2a8e416aa9b12927d0564b6f161195c263273fde2d534ee3917054c96a039dc

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4023f5b2404c228f420829201f0cde364e3849ea21f46b20b56520dd58cb474b
MD5 af1dd8c9cce584a9d765f2d435ad669b
BLAKE2b-256 812e08ce063b2092d1373be746e0c61df1885596238aecba387547885dcb8c0d

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a2c2cffa13a304f55224592bbad97849ed63efcb2d8733b08f39d23532cf233
MD5 08b3dd52dbe739483d29f06890a8895c
BLAKE2b-256 2aa61f8efbbcf7743cd8d5c4a4d33c37ea6d83985ee3bf860b04e0f90fdffc91

See more details on using hashes here.

File details

Details for the file abess-0.4.7rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.7rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 998b1a4a7a9772e65cca77f1489494aa09943bb051b13a2616f0effa409a94d5
MD5 04bc7e2d3170c5a1bc456edb6b8395f5
BLAKE2b-256 c278a5c6b50e6c738f35095115d8c0b26315af4644b80b549fb509f9d50769e1

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