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.6.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.6-cp311-cp311-win_amd64.whl (602.1 kB view details)

Uploaded CPython 3.11Windows x86-64

abess-0.4.6-cp311-cp311-win32.whl (532.5 kB view details)

Uploaded CPython 3.11Windows x86

abess-0.4.6-cp311-cp311-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

abess-0.4.6-cp311-cp311-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

abess-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

abess-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (700.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

abess-0.4.6-cp311-cp311-macosx_11_0_arm64.whl (610.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

abess-0.4.6-cp311-cp311-macosx_10_9_x86_64.whl (783.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

abess-0.4.6-cp311-cp311-macosx_10_9_universal2.whl (1.3 MB view details)

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

abess-0.4.6-cp310-cp310-win_amd64.whl (602.1 kB view details)

Uploaded CPython 3.10Windows x86-64

abess-0.4.6-cp310-cp310-win32.whl (532.5 kB view details)

Uploaded CPython 3.10Windows x86

abess-0.4.6-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

abess-0.4.6-cp310-cp310-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

abess-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

abess-0.4.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (700.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

abess-0.4.6-cp310-cp310-macosx_11_0_arm64.whl (610.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

abess-0.4.6-cp310-cp310-macosx_10_9_x86_64.whl (783.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

abess-0.4.6-cp310-cp310-macosx_10_9_universal2.whl (1.3 MB view details)

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

abess-0.4.6-cp39-cp39-win_amd64.whl (602.1 kB view details)

Uploaded CPython 3.9Windows x86-64

abess-0.4.6-cp39-cp39-win32.whl (532.6 kB view details)

Uploaded CPython 3.9Windows x86

abess-0.4.6-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

abess-0.4.6-cp39-cp39-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

abess-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

abess-0.4.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (701.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

abess-0.4.6-cp39-cp39-macosx_11_0_arm64.whl (610.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

abess-0.4.6-cp39-cp39-macosx_10_9_x86_64.whl (783.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

abess-0.4.6-cp39-cp39-macosx_10_9_universal2.whl (1.3 MB view details)

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

abess-0.4.6-cp38-cp38-win_amd64.whl (602.1 kB view details)

Uploaded CPython 3.8Windows x86-64

abess-0.4.6-cp38-cp38-win32.whl (532.4 kB view details)

Uploaded CPython 3.8Windows x86

abess-0.4.6-cp38-cp38-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

abess-0.4.6-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

abess-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

abess-0.4.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (699.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

abess-0.4.6-cp38-cp38-macosx_11_0_arm64.whl (610.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

abess-0.4.6-cp38-cp38-macosx_10_9_x86_64.whl (783.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

abess-0.4.6-cp38-cp38-macosx_10_9_universal2.whl (1.3 MB view details)

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

abess-0.4.6-cp37-cp37m-win_amd64.whl (601.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

abess-0.4.6-cp37-cp37m-win32.whl (532.8 kB view details)

Uploaded CPython 3.7mWindows x86

abess-0.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

abess-0.4.6-cp37-cp37m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

abess-0.4.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

abess-0.4.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (698.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

abess-0.4.6-cp37-cp37m-macosx_10_9_x86_64.whl (783.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

abess-0.4.6-cp36-cp36m-win_amd64.whl (602.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

abess-0.4.6-cp36-cp36m-win32.whl (533.4 kB view details)

Uploaded CPython 3.6mWindows x86

abess-0.4.6-cp36-cp36m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

abess-0.4.6-cp36-cp36m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

abess-0.4.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (667.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

abess-0.4.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (697.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

abess-0.4.6-cp36-cp36m-macosx_10_9_x86_64.whl (783.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6.tar.gz
Algorithm Hash digest
SHA256 9830fb70a2854faf233876eb81b27a3e7265533af682f9f8fe0d4e1de0293cb6
MD5 d5438e713e1e7032004636f5f96f625e
BLAKE2b-256 1f270abee072f9378ea41d484b0fcc3e67b5ff10380539da7321b234adbc182d

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: abess-0.4.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 602.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f36c31138147a6eb2412d5a25d6479bfde280954bec7a008f8d0d2c6e8b4b6cd
MD5 6afb0f41aacd5da510cfaa9f4844030d
BLAKE2b-256 813e8ec190f4d1e70139ceccf8051e1e747d8d1412d96517aba1d1c75f9f5f48

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: abess-0.4.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 532.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aad07dbe9f5d5d6e65d7e439284b969c73ac20e3de626b62058b2d8935cced43
MD5 da5c9e7873dec2a857ece5ed49997761
BLAKE2b-256 1ecb5f673c28ba91cb8b1256eab32c90ad9042e3ba39c9d2391cb25e3b616954

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8f1236b357836fe62fd107f79384bd2e88898bf988d1809d2d20711a224c051
MD5 6708d48e0a90288524034021ee199b64
BLAKE2b-256 4fc6a2c3f4f25ca257ac92ece5dc10a32a48bf10a7eba81d19e49d880b660ecd

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f0e2578786439ebf58f2a20f8c9e9ac0d4b694ace935efcce3da36ce764acefa
MD5 2763d433fe05984d9e70e17db87fe529
BLAKE2b-256 794048ef6d7e9f1e62003d4fb1c2081d0c87bf9b4abb4939ef3d59863ccfc056

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62fa82419c732ce3089306267926985c7b64b026e82302a9786a4859b436abde
MD5 3e8d2db2275939323f4c696264027d5c
BLAKE2b-256 d05f27fc154e6ff2bad7e87fa35857af5a0d28e77526a0c4bae115e054264ffc

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e057c5d11376db0e2dc5e7eb57a3c970c03a5785dd9afda225e5f39b5a72d35
MD5 d6e4232639d1c367859ac15bf7b270d0
BLAKE2b-256 152664d8fc3b5821532c55a77237fc35a8ea08433925902f280e4270a954b809

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 226be63c28fd8c280a54c44d23edb082ae6407d5a931e298dbc3812c4ec278b1
MD5 8974001f136266c1611127ada9dedfff
BLAKE2b-256 49fe3a185138edfbec76839cd878ceb2aefac8824871d4176d59491e260cdda9

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8087c66d136f8378169a95802de0894f141635a70265c667e7dc88f46433af30
MD5 37103cdefa2da4b27fa7f0c9879c7a51
BLAKE2b-256 8c7229bf9e7093106ee363b34e53f5d39876d0c9ba2ff6e4b04ca0725f240eaa

See more details on using hashes here.

File details

Details for the file abess-0.4.6-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for abess-0.4.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 55dcf7a480ccd52d269c74b114e75600c5df9af99e9d79a66ebdf0f9842e6a54
MD5 d99c418f2b1e6b33516599e703d0edfb
BLAKE2b-256 b6d611ea935871a79c6b260ac775337b8ac854ab9d9ccd0b43b22f00bdcbe1ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 602.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8dd1dad7fa8dcb370f42c9be8ff497cd9735c5ad302086f2263bae6a91a6557
MD5 801013864b20ddd6e7fc5d01136fd524
BLAKE2b-256 068090440cffc47319227273de89562d603790355554559fdf3f1552955dc1db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 532.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 83d850bd8bc603a45db7e9aaf9a7226902b9b7fc891da03f1b9d7ef8c4703f48
MD5 9a262ca3dfd7462db75161a3de7f9465
BLAKE2b-256 96643887a4bc2e2ab2afe66f485ce4160ae943ead3d855cd3f52b053ec70f911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ad0f85ac3cd0e42209f1fcd7ae6f80062f50537da54b3574af0f6b448b096ad
MD5 09ad2e258b96b4d1a922754f3f7aa2b2
BLAKE2b-256 5f5388f475f82075a846ed1eac9edad5f0e1ad6969d48b8bb00465ada558fedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f3c85922063c48358363d71a2bc2b6699da5424d557782ab885e1ea1a6bc1146
MD5 1425b7d4d9b96727ff8f1c70749912bb
BLAKE2b-256 16d1e4a3c778998471817f86efa424f306ec4c2f06f9cc2f1a88df1024648b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67e965a44f0815e72067baa93907ab2e7bc094e3703c6a892da3a316145ea484
MD5 9ec9ba97e00665cf99fe868a9e6d5123
BLAKE2b-256 8b5359498bcfe55ae48fcff2df30387716b7336b521d69fbc8f0ce8137f19413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7072e799f7229a7d1cc5ac5d38d9b26377c2f529ecd8afbc60d31aae882eae0
MD5 104458567f7fbc9c7df7883543de956e
BLAKE2b-256 48d67a1f441a69063a1bb4d1ac9d69ffd2a67c4ebc5349640eea10a734cd5ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff4f7ee9e2cc14ed3f09df4f4f04fe86f5e918c5b1c853ef8170be0348d959bb
MD5 826b33c24d452d3cb0ca7344956215a4
BLAKE2b-256 bfd156e65caa44811f8b7e253b098c646080d00fb37dc33e239a68672996c154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f88ff12fac4fbcf1664ca89769604c915f9b3bc40d5412ea5d5455fb8b2e354a
MD5 447db890bce492d3a6996116ea82a30e
BLAKE2b-256 7baac57fccb4cf8fc1fb32035a489efb5d533272721e6d2b3793e949949600d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a9edbd5e9303bf0c9027db4e7365a10fb1cfc76c9a5701f7eaa707557f3b495a
MD5 29978773020f216b6e4d49dd224666f9
BLAKE2b-256 012355f9353969c60efb8767f86cad8a56dc67e76800b962178dc8cf0af17f75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 602.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d204a137353d7d87d41216d23177359829a462027fa4c9ccf04ceadae11d3d14
MD5 2a94983625ddafd7afb86aa6ab558503
BLAKE2b-256 c0e10c23c3f33ec6fa630a634585db4918b92b9732d342e6200d1518f422cb8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 532.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f813a46fa86f14ac6bf96292809c85af32487c7b57555bd822f7fe82f16474a9
MD5 2c744feacd807d2896a1fe4ad1ca9426
BLAKE2b-256 1f43a90ea4eb3df357584c1f2308fbe5b662cd714d2c4117f4b23bcbb1ccb4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e81e34f12fad52f27ff9bf0c1cf737584a77f6dcec8093542ced3db8ed945ac0
MD5 b6d9abd355693a80d4722c3a8e7fdde2
BLAKE2b-256 b81be729ab6e16cf177c01c8b1e0955c0eb636e951ec9cad193f079bbaf127d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3f463f38ab89b1b40b2e3a69e64cc56e47b95dcc8d506c80e9cb95467b0e5646
MD5 a91aff57b38e5b401b20229aab8c2e49
BLAKE2b-256 b4f7641fd8f1150702fcdc312343d671954729c53922c0d1c7dd4ab2d1060560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8a514af95432462036e3aba7251830e68c9e290a7d268d2c30037efcc51fe3f
MD5 42a397d6aea7f9ed67a0ba8336e2a8ff
BLAKE2b-256 7d437010889151e7fe5bcb687329fc38229d618bb729684b065be2718d9df8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1c89a9fa37eada1cdeec8111272162af23dc154b534658987bab5cdebee5475
MD5 b9d8ffe3a564389ee452782b22fb5723
BLAKE2b-256 d9eed54d4ec0c03a74a7615dac37af172e5ceb6e0d08803d382dc09fd863803f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 610.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa49047c478a5cf75188f056837e4a9e57d125b749057836f1f9040ecbcc4ac
MD5 fd9d25e6995891fbdf52600c2e43b807
BLAKE2b-256 a6d1e7f28077b24503b614adaf5787d4087ffab93a40e84a168cde073cd33ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d00cf983e8c05e18d9c0f7c006bc15b008b501203b71604705e62e487d01e56
MD5 edeb7199d1144d70f4fd0f24b15ded9b
BLAKE2b-256 85183726795b60a8d58bb76b5922eefb426495045ab5c2661cc5e3c72e80d077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7d32816b75ade908474de342d8754f77537db9d09ebb5b0b3ba2b95803b4339
MD5 6e77812a18dd8ee18df1753d3c85e337
BLAKE2b-256 80a7439e1e13820d6314c6a1e601b58174788148cf64b76b58177d6db5eee06b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 602.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 12722a9e7abf40b98047d289435b7d29e09cface36dae41f430c45d6666eefa2
MD5 a02c68c1c7cec6f7981a18d8568fbc92
BLAKE2b-256 8d8c9f04928517de72a636600495667917be6002c1c6928f7536bd7fc612ebf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 532.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f826aea27f0e10f5574743afbecfd9da44a81fa1391cb73d8f15e686596e2ef5
MD5 5e6ed62d9fffcf937fdefc91e1e902b9
BLAKE2b-256 f6f52a2a7fc46c7109b4dbc1240b383fc3b337f319b63a3dbb9f6ef467985b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 490c795bbe72456c0e4552848bc79fb240c7bdf9404374e86c212c28b7f4b132
MD5 d085d380d1254fa6e373da50ebbd71d2
BLAKE2b-256 c854ba7e29fdfa1018617e43c5d982f40918658d8ab3bac3bad486d75657a19b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9fcc267b897266bfefce6a7d7fffa4c4eb0dfd213f6dd45a38b311bf4c7e98dd
MD5 76761c4c06418139f1330a5cb7fee602
BLAKE2b-256 f40c31a9a5d496a8067d340fdeba96a135b8d4a1e1190a24af28dcfc939ab69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1657652d1e0d6a2f5f56f27d01f2f8b88713ae7e0fe00671559da1aff1a52ec4
MD5 94a3cf13f6f7b3d824ccec5dca73889b
BLAKE2b-256 f5a719a5d10a8007ce59fcead51c8c54cc66c197da4d7efb5c25ce78f9cbdbea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dace51d0d942b5a74fb29acbfc628c40c467609ec18bbea35020abcd1f3f5a03
MD5 c64684a383349274ebbf8ae4a556ae60
BLAKE2b-256 546403ac1e1866c2b541d487861a861d37f8995b2e287b914ad8fc02e296095f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 610.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf2820f9f791e506812b435b129bef7788ef974fe7fc59a2ed15da7534f30fc
MD5 3c2aad8f4c94b0ba32ee63c43e845f6c
BLAKE2b-256 c96d2be672f184e6e509770f23187344d09ad1d432ed6bc3341ef6e4e0c97233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b0de3c50f38e92faf534d0aff3111244f06a661828e38a1c9ed8f2504b95d55
MD5 946970c5a8614844ddb3e55d6eab0d82
BLAKE2b-256 3c20008d31d0906eb75424edbb4bfb10b1f022cf82f3283f9207f873bdb2b5a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fffb13651b56768faf8051ff7efae38285f7ea994ad2f4993a25c903e9fdba07
MD5 57752f3f14daa0e499d96114b3fc50ca
BLAKE2b-256 4fb939712fac8c62abadbaed930ac9304e531fea0d887582e390fc93d116fcbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6bb3de6821a3d30a0b1a2d01cb51a3dcdb3787d925878983b393fa3e2a5a0d7d
MD5 de88fb72bd4889370c935fb4eac49fb2
BLAKE2b-256 a42f4a4b7d654b5ea85f4dc66b7c1d9a24df69eaa8ec8f30830937e613fe8bc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 532.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ebf9fda046b936feac2fcfb1c488b6103b874e91dc1412d8842b5ad7c629eaf7
MD5 e82fbcfd516a179ddac867af52639c85
BLAKE2b-256 895ac79298958b0f988eef9357bfe8c67d58605a755d109776195a6c48d35784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e6d2b441073683e8e4de8e97198eb8d2182aedb43e137a05ef26f4404a8ea86
MD5 a88fb572b1d947100e61fb6f9db1810a
BLAKE2b-256 c72efd0cf6d6efe67396a9a0b80f40fb53b64078fc096cae30e193927e6e4884

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ab2f5e6169ef324ef97d5def7652a7d14928ebff97f5f72dd59bdd408b165bc4
MD5 282c4d1c871a644ef03d6ecc2a6b93b2
BLAKE2b-256 e443cc63ca307fc623ea1e7e0846dda2a70d296ed69832a3b93994d055fd38fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0078c6389cdb03a661137f12d3fdff61107d707e2be25fa4a9b90786a5b57e60
MD5 1ef6f5ab65874094b2ce5c9e0265b0ab
BLAKE2b-256 229dced51a39e19d46f2781465df1fdbb0f52c76f539880ea049f49d36c61875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 541f0172f5e3657d7e89b761081b39666b856c44645e13a1a70de49e5a9b26b5
MD5 53b6ce71167da4a3a63020846cccb28f
BLAKE2b-256 dbfa27d889723f5e9205c91330bf46630dd62360fb1ad493cf5b5509ce656837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fead83608a0ecd7e171de5c9f1c716fb92b5e805aeffc7d49ca94ea64411590c
MD5 73aed3b7770eadbda548f627768273e8
BLAKE2b-256 d8d550f0c7526f4ee7aedee4f01da7c97029cd3d51278665f6b78a37a132bc6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e53d34ffd0ed3449e27766d2608a3ab8f73ac781f4d69425502f57af49ce6f64
MD5 3f54227ad4539f2156672a6d6d651630
BLAKE2b-256 59d2e2d288189d2847d65ba0459096552234c963a650dadda685af5724c32e63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abess-0.4.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 533.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for abess-0.4.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 645bdba2e9f29a20fc32a312c5968d8a0b57d90430d9a8ce177359623fc40948
MD5 a563b3e78f8577bef335da50024ebca9
BLAKE2b-256 41e663e74524ac075dbd03754b52b3dadfecbc21f89353ad5b3624cd3994ec22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5a64d79550f4ebecc77332b8f4fd8e95c9ca7d722ab27b6c46736ae526f4555
MD5 a46ec92cbd839e09ed060e2129ee04fe
BLAKE2b-256 039812cdb3be13abf122b931ab80f7662a99a4b5890d84f29d0398c077aa02be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for abess-0.4.6-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d35c7651c098e861820b49f6abc60afc7d58c7b153c67f89fc27ba5210965851
MD5 b9b4550017de7b0744661b0039437167
BLAKE2b-256 5ae322c357ed2ec5b331b7f62941bffe4b8cf4e87a9cf11b2450501bca71ca51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b932481502e5ebdd1547374d7ff587613e560de0f027bff5e284a58b579a4ad
MD5 462200e6bfcf0002254ced22b04c0864
BLAKE2b-256 cf8ebd95ff457fb448d7652f9f99467a317f6e6ae95c4837ca424fbbbc04b79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 710ccb71822d1f801ab6056f6b37ca2a813dd4fff2a4d63e5d762d03487750cb
MD5 c14e70c73d8511490b7201a61f0ed283
BLAKE2b-256 f05112b83ead0e2307dc38549dc4890a46c9fb15c9983f21776a025a7a19f9ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abess-0.4.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b83135f279f1280572676205eead887ea25cbf72c1afad770bc6bb4eeee5537b
MD5 943b74904d15a4264014ba4d77d39b23
BLAKE2b-256 64a7e1288c0050ea4f8e51cc78cf1654b490bac8656eed60c775f686e567a0eb

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