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.7.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.7-cp310-cp310-win_amd64.whl (538.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

abess-0.4.7-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.7-cp310-cp310-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

abess-0.4.7-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.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (487.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

abess-0.4.7-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.7-cp39-cp39-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

abess-0.4.7-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.7-cp38-cp38-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

abess-0.4.7-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.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (487.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

abess-0.4.7-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.7-cp37-cp37m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

abess-0.4.7-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.7-cp36-cp36m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7.tar.gz
Algorithm Hash digest
SHA256 c0cb545e0cc7c838ec8dad2f4d01a2696278647d4e44a38df3a8ab099fceab73
MD5 a6f2cad137ef6a667e62180e4a63e830
BLAKE2b-256 3b6cedfdb68a7aaaadc3ae362167a039521188f607e2c7ab9910bbbb5025b365

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc0c59684732ca56a4114ba4834138da275af6bd60acee459191c7d840a960bb
MD5 30a557d34ac0e02fcadeddb99912f735
BLAKE2b-256 6983c20d735e95e104e52ad29e8c502d4b30d8d3f1cd5d3785007664a511b74c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f6d21ec355bfe09d984e0d5a48ee09c0a63f246428314e02bbf13e157ddac2f9
MD5 6d74133f39d399097f4a6c42dadadbc1
BLAKE2b-256 e389572cc066add567b1462d040793b844316bb41f301ea526564a5bd22fcf2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf17f6c42a2ec86e9504528bd43192d90778e1a29118f088050be475ab0f73fc
MD5 c7b82806cc1654e17110d96f84b02076
BLAKE2b-256 4323d4a9cea0f0219417a31e79a2a11dde79b27f5cac88aff814e0345dd6e231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8c46cacd5b15d8fa423a3ceb7b542de520ff29601745c5c04ae2aa7d53199272
MD5 9675e0274904b13ab7bca5c6317f8f24
BLAKE2b-256 dbe5b397e1d2ec73bc43ff57a32e10fa5741ea74c974eb6e7a578f3d76b25a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d91a7e29d817cf98a78b3a55a56d01325d61737b1703b862e40b6a3175903a2
MD5 2d7a1eca5f5efeb0607989ccb974a6c9
BLAKE2b-256 c6fc88eaff705963c6fefb633e64e80d772a2a9ce6d699a87ba3e8b06eebced3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a72a138f0c7e3d7683b3ae4ebdf0c9619728317bfa9c12d6f5259cf71f2b9595
MD5 c15c49dc2d3a3e84a4aa273b08d7eeb5
BLAKE2b-256 5160bb6427c55c641466015f7edb4653caad75d7e813468b0d672374e659d921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00a1af3a4df449521b0e38fd4ee05e3389c9e919d4e8c4e120581494f543cf7e
MD5 0a8b10b7b46204bafe95b7b57b61f564
BLAKE2b-256 1c0672ebad5c07ade3e7d35aa27d67b8dfe9ec7fcb0be92d442f704973105306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4762586a8cce90372a74c57ef7c01a02540193d11ae220e8baa8797f4138c14b
MD5 a489b75c0faf70478c12b4696861bc40
BLAKE2b-256 5a393f0e69fddcaca6f2b45a89c6477c5983411c21212a42181df76382bcf28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e90db7027744df49304443f4c2440a3db76dbb2254f7a4f836c034210b35e755
MD5 d46cc9c74ee12b5ca75f4bf1cbed625a
BLAKE2b-256 30bd341754bbb08b6222fc8b31e646eb10d3df1294e3edb73175123841247eaf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ff439bbec1d8d45eb8eb1bcf236407c35aed3a19c97f0cb3c26de3e8d14e53f1
MD5 eaf984293b7ba89d0f0557d6a0bd1972
BLAKE2b-256 36d0e62ed8191def22e087f202d101827e48b3310ef72f3b3d145253303ca271

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 db2c6f30277b7b3c954a6d1a19f3ac178351f714ccb07cacffc105e68d43c447
MD5 49eaf39e9617667cc8dc444539f5c015
BLAKE2b-256 4bd828b7a415d836869de0d1784796c5c3a2192a586ae9138013775e3509a733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0daa95573fdc43a4500ac2ddb33b170afc967f8f9bd0d6a75a77ec74a8ebc16a
MD5 3c1e6e2cf7c067fc851b70eb74446ab7
BLAKE2b-256 8c90b82380f799820c8ca54f02706e4aa16265996874280dd9a3523d7c1567ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b20504729b6ec6315e57217ca2f784935d89aa9c4b79afe20da42dcbaa65c8ae
MD5 32724fd0baef5e9d9b8b11fb41c9dc17
BLAKE2b-256 64b5fea452819adafcbf65b7cfda94318e14b617fb002899d3ca3831e8c6bc2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e444773824091351eeccfc0649f820f284d74628ded4bc61fd0ab1139361f667
MD5 472030a4f0cbd1d53cefec8a8a696607
BLAKE2b-256 923959cbd58c3a73b9704ab2a8797697b649800b3322ad3bd0ba7c9dc91927bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 807b63f684daa97b8acb2ca9c2da957e5543c9d7e0bc4516cba852f15ad5d906
MD5 7821e9490be351b0a150eb0a64408603
BLAKE2b-256 a8b1c8ba7672305d40aeef9434f34bca1f5779e621c5bd5232365803d89b7cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 425.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961d9a515660ef7b3686737505611bcefa6fe5c22610576063d0fca03afbc5c3
MD5 4e95e58587e062db39e4e69974dd0c7c
BLAKE2b-256 11397a2dd417908b2d8bc7db1ca57ea9d59661a77300b8d0f5da5323f0b66997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73faa17d80116922f2ae03f20a509d5e7bcc5ed4d2b865a4b31bebe891f38ca5
MD5 7340fd8393a70e02600d8e4bd619cf50
BLAKE2b-256 8bd84e21e72c38818756d3ec4e5cc555e73487578d778e2eb20f133b58f3ec74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 835.9 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bd05eae93ef9b6ff3ecdbab23504908b25e06825879c4a3fc59b355682830d91
MD5 ebf2980be689906d89c81b16bc4d7b05
BLAKE2b-256 fffcc7cd9800950801905deb042954fe464950359191456249e01f2bff8286fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aadf4247c8b74510be03ee03cbb0d9d3dd637f65857dadc2a854cc1f29587c53
MD5 eac02ff72c58d5e47965a211753beec7
BLAKE2b-256 19077532e15a7a6aa191c6080e273d113e72d2af25d8e66bf1373e841eb2cbd5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eb91584f2493101f488d110c08125d514ba6769bf6014c61340cbd4a28b23f4f
MD5 8f554d41d363d1ca8d078fd4d1446c3c
BLAKE2b-256 976593c017a9348cfe8f9a7d2bbc6a4a2ad0ab975d36cdee2da2fc0f6901a1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23c8987582bb20ddcdcfc42818979d25ca694b96734e1303a4157d96232c12bb
MD5 fc5fab383be6986f03188a529503591f
BLAKE2b-256 34a8bc9ed8c294c514510fae30d0f612d1fcea292081091a47a1e1a9c88bf8b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 80b1d85be6a7ddec7549680fb19f1da25b033d5ad40d1e3eca5fab1dd7d4494c
MD5 675e9124ae1d699bea204e8b341e2736
BLAKE2b-256 4f42e797908f286194dfcc5a827f7f594cce63b3f718fc95ea5a3273eac85ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01c5ee84e6aead5d5b41cd43aa4372787bb0c479b3ac9d53cf49cd90ab2fa8d7
MD5 8d3b1d37dd6863451ecd619bb7e89151
BLAKE2b-256 e7dab1aec3eacb75d8b86bc804d3aee9768e13be303a595868a07869b4ebb232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a68f7c9ba92d2b8e0b57c2b2f7fcd4f6c21f42a92065f7a16543dd7e1ac415ac
MD5 ddfb0204c2ff14dc86842e79a26aae88
BLAKE2b-256 6f1827d49d0c2221c4d7959ecbead71e84d3bfa5fe2f27a797ff9de775c228c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 424.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1457d75c5fb3f30eb2a2a6ec1de2970b407dda2855400c9257e0b4a1a00eb9be
MD5 c3aad6e8551bdb94e6c797bfde2ac6d5
BLAKE2b-256 491d0fc276f396b209989c7d7ec93597c6ed45c33ae255307fa129d06e24716d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55fc12698575a3ec64eeb53b18c060816ab427d011eed19a550e4a4a541ad68b
MD5 869df33afc7ef5b008025d3eefdb46ec
BLAKE2b-256 5418470af1ef7a9a266a49cafa9f8be6ce838d002d61b706c2554a77c7e12a23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 835.7 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 41f3a0be10a8cba8d3d8e2b76ee3b0fbeedc26172e4230d03b4c6997e7d3a795
MD5 12825161d7e35393a3695a6ba3b995bb
BLAKE2b-256 b12e5392331540ef94345bd50f3acb8ba4f66d66e7f7b8ca36c3726ad6630aab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6c435b9df604e5d76e5b7010dbfd5045d993c5cec295672b89e7a58d902493c0
MD5 1650b4f9d40ab97d6327c3c4c944e2da
BLAKE2b-256 47f7cd224b186907e87957416673f941a15ef643d8d7bda72a7266380085b298

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe62963176ae8571b7c8a3ffe1e709e839a0f55d5eb0981a26202c05e88b4099
MD5 f49cebc2d10316b81601cc5e842694d0
BLAKE2b-256 6db263ab0d1e29afff45c1a2123d4b8767c5f27b3e404defa7aa39184742ed57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 006151cb184a6a435c448b76b8b235b4d34961f02e2324dfa1394606ce1dc936
MD5 586fd5f9a8c0ce90f51c3590ec89ecd5
BLAKE2b-256 b1799e40ae292901dc4d027cc0ef9fc8f6023d7ac171d560e5aa775b8a5c845d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2f196c827efcbc683c2d45b0b5869128e04b38f580d5dff9a787ad42b21e6b96
MD5 34f5e4ac79a683a985c51a8205f38b73
BLAKE2b-256 1764bfed2a17d23e5ecbb66aec95ff53096ccffb3732ebd1dafc60ba8151a0da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc0807101b46a5e00d2c5f75d84d140dd327e6c01def3bf4a36315e6024ca657
MD5 46d4864801790b799f821fb2a09b5a33
BLAKE2b-256 ec750ac2eef87e7179d467aeffbd64b92b42b4783ad74c349563d02ecfa3bf0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e09e9142463c064afe3027f93af820958f8cbb89fa45b0e4e274feb47e8b6c0
MD5 52652cf9e046fb9fcb9441136b39d112
BLAKE2b-256 7bad360e198971ffd6e661c53acc750c939a5055d95adc375896218c43809052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 497bc17677bed1dd5788edd42d22b36fa9ffd7097ad86211bcda692826141bef
MD5 c4aa5b0d19670668d8c3611d2b75ff35
BLAKE2b-256 6b771a65e7d12ef3b300b784d4a62ed7813a9105ba285eb509b37e0238112397

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4200206a76dee99ccb36d0f0cbe2ac055ccfcbcae6166f4f45c0a7159e664fd5
MD5 6603951281a3f5e020368fafc85d9658
BLAKE2b-256 ed156f27d439092352fc218bc37b372d3839fd9e24df0627c7769008116ba3c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 56d0306310c36914cacb78d596798595932159e1994b2ec92ecd1cf405b37636
MD5 df335fd0cb97d797fd90305a5118ed1b
BLAKE2b-256 cbd49bc34097b1262709828fbc4a57e5c2e1dc99027c3be2a5c1ac2864d58d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f1204031c3285611d1d5f68c8a9ddf767dbfa4289d8a6974bc0dffa16512d24
MD5 994e28434952fa7be568c991b417e755
BLAKE2b-256 785333b1a0f44325da83e4f7ec949f0885950392b33e810956378ccb00d934b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.7-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for abess-0.4.7-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5259438d6e57ceefbe8d701542e0a22d81ac1b16aaa82b774495678acfd9f16e
MD5 a9fe101336965ff37c6f81abec7e24e0
BLAKE2b-256 df8441e4c75bf24ef060b052d20e1995d48114894673b2fe3da7c3bd679fc5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 320ab1b7e8f5740a76040af2fd85a3f07de9f3fd78fd9ab9f995df52fb966af8
MD5 e946152bb5e787d6521cf052e81276a7
BLAKE2b-256 80f25e7e0e10bb50c69328da5b1f5d14b5c9da45abf5480af1fe2d59ac0469c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9976cafe7bf0e687ec8ed6c37361df9a3344d42580600dadd98aee8b3d40b353
MD5 61326599bfc6470cd84d1ea723f16369
BLAKE2b-256 8e644402e4775e60c0930217f935e222030aba7affa6bb231b319a89d1ffce3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c509f529b0d94d53eec56a17035d08fc6c937884989686e8c43440cb0b784a4
MD5 998d0841c0914b8fdd5b463a52fdff8e
BLAKE2b-256 78c740fd5d3e4ad4e6d9387c7a7af278c91f61fe8898636f35a168212aa4bb31

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