Skip to main content

Provides common modules to be used by different types of multi-label rule learning algorithms

Project description

"MLRL-Common": Building-Blocks for Multi-Output Rule Learning Algorithms

License: MIT PyPI version Documentation Status

:link: Important links: Python API Reference | C++ API Reference | Issue Tracker | Changelog | Contributors | Code of Conduct | License

This software package provides common modules to be used by different types of multi-output rule learning (MLRL) algorithms that integrate with the popular scikit-learn machine learning framework.

The problem domains addressed by this software include the following:

  • Multi-label classification: The goal of multi-label classification is the automatic assignment of sets of labels to individual data points, for example, the annotation of text documents with topics.
  • Multi-output regression: Multivariate regression problems require to predict for more than a single numerical output variable.

The library serves as the basis for the implementation of the following rule learning algorithms:

  • BOOMER (Gradient Boosted Multi-Output Rules): A state-of-the art algorithm that uses gradient boosting to learn an ensemble of rules that is built with respect to a given multivariate loss function.
  • Multi-label Separate-and-Conquer (SeCo) Rule Learning Algorithm: A heuristic rule learning algorithm based on traditional rule learning techniques that are particularly well-suited for learning interpretable models.

:wrench: Functionalities

This package follows a unified and modular framework for the implementation of different types of rule learning algorithms. In the following, we provide an overview of the individual modules an instantiation of the framework must implement.

Rule Induction

A module for rule induction that is responsible for the construction of individual rules. Currently, the following modules of this kind are implemented:

  • A module for greedy rule induction that conducts a top-down search, where rules are constructed by adding one condition after the other and adjusting its prediction accordingly.
  • Rule induction based on a beam search, where a top-down search is conducted as described above. However, instead of focusing on the best solution at each step, the algorithm keeps track of a predefined number of promising solutions and picks the best one at the end.

All of the above modules support numerical, ordinal, and nominal features and can handle missing feature values. They can also be combined with methods for unsupervised feature binning, where training examples with similar features values are assigned to bins in order to reduce the training complexity. Moreover, multi-threading can be used to speed up training.

Model Assemblage

A module for the assemblage of a rule model that consists of several rules. Currently, the following strategies can be used for constructing a model:

  • Sequential assemblage of rule models, where one rule is learned after the other.

Sampling Methods

A wide variety of sampling methods, including sampling with and without replacement, as well as stratified sampling techniques, is provided by this package. They can be used to learn new rules on a subset of the available training examples, features, or labels.

(Output Space) Statistics

So-called output space statistics serve as the basis for assessing the quality of potential rules and determining their predictions. The notion of the statistics heavily depend on the rule learning algorithm at hand. For this reason, no particular implementation is currently included in this package.

Post-Processing

Post-processing methods can be used to alter the predictions of a rule after it has been learned. Whether this is desirable or not heavily depends on the rule learning algorithm at hand. For this reason, no post-processing methods are currently provided by this package.

Pruning Methods

Rule pruning techniques can optionally be applied to a rule after its construction to improve its generalization to unseen data and prevent overfitting. The following pruning techniques are currently supported by this package:

  • Incremental reduced error pruning (IREP) removes overly specific conditions from a rule if this results in an increase of predictive performance (measured on a holdout set of the training data).

Stopping Criteria

One or several stopping criteria can be used to decide whether additional rules should be added to a model or not. Currently, the following criteria are provided out-of-the-box:

  • A size-based stopping criterion that ensures that a certain number of rules is not exceeded.
  • A time-based stopping criterion that stops training as soon as a predefined runtime was exceeded.
  • Pre-pruning (a.k.a. early stopping) aims at terminating the training process as soon as the performance of a model stagnates or declines (measured on a holdout set of the training data).

Post-Optimization

Post-optimization methods can be employed to further improve the predictive performance of a model after it has been assembled. Currently, the following post-optimization techniques can be used:

  • Sequential post-optimization reconstructs each rule in a model in the context of the other rules.

  • Post-pruning may remove trailing rules from a model in this increases the models performance (as measured on a holdout set of the training data).

Prediction algorithm

A prediction algorithm is needed to derive predictions from the rules in a previously assembled model. As prediction methods heavily depend on the rule learning algorithm and problem domain at hand, no implementation is provided by this package out-of-the-box. However, it defines interfaces for the prediction of scores, binary predictions, or probability estimates.

:scroll: License

This project is open source software licensed under the terms of the MIT license. We welcome contributions to the project to enhance its functionality and make it more accessible to a broader audience. A frequently updated list of contributors is available here.

All contributions to the project and discussions on the issue tracker are expected to follow the code of conduct.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

mlrl_common-0.15.3-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mlrl_common-0.15.3-cp314-cp314t-macosx_10_15_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mlrl_common-0.15.3-cp314-cp314-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows ARM64

mlrl_common-0.15.3-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

mlrl_common-0.15.3-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mlrl_common-0.15.3-cp314-cp314-macosx_10_15_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mlrl_common-0.15.3-cp313-cp313-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows ARM64

mlrl_common-0.15.3-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

mlrl_common-0.15.3-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlrl_common-0.15.3-cp313-cp313-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlrl_common-0.15.3-cp312-cp312-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows ARM64

mlrl_common-0.15.3-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

mlrl_common-0.15.3-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlrl_common-0.15.3-cp312-cp312-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 021e265f007c16a918e5d8d279f690eef7c2d656f96e2963511a9c4f9585572d
MD5 e91a1b81d50e2478705bb040fa420668
BLAKE2b-256 9cfdb35f8e7507005e03514b6e0c48b81b8c94bd9737c213db80e534ed1300b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb6986fc97fe4c9c99856b1731402618781e00ac5ed2c7ce58e86b0b377bf423
MD5 7be6d37df6b7d3e2a9e1ba37210b8b96
BLAKE2b-256 042aab6de29816acde7301748d91f2c8a4789822a8e04e41c927c39c5eadadf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db320eb9c9e277db804b90099df45fbd2f356fb41a005e0a4d2f12de4ebb6ae0
MD5 ddc538164f4332fb664fd46e1ed65908
BLAKE2b-256 90ae856de0f7c106595bac0e0e27f421a7ad3e662905506ff6b80f795f2d0352

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32d8f7fa60b6977fb83f407f6e2e03e5ea265fc7f0eb11e3c1413ff2b62da2c5
MD5 9d60ef8584f605ee96ed54936b3ab474
BLAKE2b-256 bd294c623892b81bae6f0e2a611471d6dcc125c2176b87e6e647f20fc0f26bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a8bb40f1be9037e9a5a4e6beac0a5ed3830628b6c38baf5b2fbaef1abbd1e29
MD5 9405ed20ed16e423120ea722a2e6f8ab
BLAKE2b-256 bff57b04e1c2e97483546eeee3de359ebee9fe6dbe9fdcc007552adbd035c510

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d25d684d48535483ffc6d2889af1ea464805198e523ae8087a80cb82df4509d8
MD5 f2250730fd6901dc57fcf6e49900f3ba
BLAKE2b-256 f7dc558c3a8920740ff727a73807d5423f67f713b6afe82435f8e75a7775e685

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a3f85189cbf2841db7628095fbf1c109f1c5ca6b707a536862fccd971d9d9e1a
MD5 12ac8becd09552c3d7d4ab0e96198f0e
BLAKE2b-256 0ec668aa412e284f2ea1209eed595e2fda0daece10e2b837c1e402320a0445d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6d5493d1eb43bc5bd72b6f5d58ff654e4de3bd827be243581c354fdbcc15869
MD5 5408909c265ef4f2ca3f32568694d5f5
BLAKE2b-256 0efd4785b8a13b2ec4fd0eaec5db8fbf3330055bad990a36c5168f8adaa94dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83d30799190d73862cdc51548eae6bcdc3c2afe9708208195ffa78b9c1400de6
MD5 e4b6485fac1aa862c819fc33be5ccdbd
BLAKE2b-256 5199507ced35988bdcb7e907068f967076a8022e7d77c974cfc1fc363f7e2cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40ee1193380cc0889c7cb7cc01c0606ecf777c6566e3d6a0075006043ba44327
MD5 3655f21cd4acd64a85b4e98aa494ba79
BLAKE2b-256 222fcc937a4d710e4e160dc6593f303fbd0d7ea51826f03616ae4bc83f33a3dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58a98302b6625933e7db9e9bd86e55cfb0e2a310f326f2c88e1e8f888562e239
MD5 a55ec65c77409761b58cd0c63401ba6d
BLAKE2b-256 172ee7ebbaed58320b73ee9381de12c478c61c2924ea36a66f97b2072efc0ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a65dfdc731b38263f5f71262d64563336e33cdd879f6f5ee5780180d87715dd5
MD5 473e0d6e3e580a61873bfdafe43a128c
BLAKE2b-256 30acf4fb75d8ca00ca6699319a18a08ee3c4224cc05427fcd15740585e27d3ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 269630fd2d6a3e79a864f8e714393bc0320365940d8cf1920874312eb33326b0
MD5 471d4b364697298abfd26c89e1d066c8
BLAKE2b-256 40cb1e270e592995766019af0449f11e783a6bfae6f2bf09b71900605035550c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 03093492797fa6c9ab09458125ef8ac818d9f6259b73a722297bde8f6b26fdcc
MD5 ce935a448a283b162b6909d0c2771129
BLAKE2b-256 23bb3203d95e50c5c6eefc35352a52dbc252e02698092398a6b09bd8e19562d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e3d06fde21181697905d5b2aebf3aa7b2a07b01f1d51bc6a2fd781aadd4d0b5
MD5 28b54a320cdbbdc360b481fac73228f5
BLAKE2b-256 df7d626a4f5d8b0ad28a46c627e456d10c2dfa1e7ad702bc4f2c9536d7e5febd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 438e3b8b255561c09de5ab1161b66aac1f591f7e24bf75cbcf298e4ea26b2baa
MD5 30100f0d26d882f295000d2ee6bc3b97
BLAKE2b-256 4ed1dad5b4c768ab305df3c3b52ba523723ee8a4e5705c7c86a72bc8b0ac6d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4065c4f7fe154c055a3b66de3d47d20042eb50356c2d7506435e4704c9ceb7c
MD5 7475be096bbb44b74b7f94532b661b79
BLAKE2b-256 77af8c67a15efb30f0177264deb7b0a0b161d78a116f650dad635fbc4bdc1ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4bdad50f5f6b4378cb967237345e87bb2ed243d41ea6e19fcc723f4d4595032
MD5 0ab4dca6656ba3daaebcffbd0d90209a
BLAKE2b-256 906405fe05bffed76123be4e609bdea773d0ac23c6d7c59b9c6f8f0b98b2e036

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b423b68dfdd617f983aa1731a1ac46602dcbc3ed8c7ba3e86f390c834ba8978
MD5 978dd2f958fdc3649c2e5fcbd29ef429
BLAKE2b-256 15005c2bf048be2674437dd1a348262304a1150afc8b74bd7b5b274e8f1a126e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1785b99a2bb5c0757242d848e32ece9aed1c77e909038898be1ef544fb8f98bb
MD5 0cb8b8917ac9cd3b7ae28fd7c166d35f
BLAKE2b-256 62ffccd0177308e1c83b22bd56daf7f077f954268b7a1ca541854f5d472fbebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 417054bc471d8bf0f670221ebbd8c6096f374f05f13b71e82096d9fbc791f0b0
MD5 c4b4fd1c4e135495db18b01d4f7a7c4d
BLAKE2b-256 16e1b610a7084654bc107a07534c7effa1b12765cd4ca0a7cd238c6d0d067631

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd3f702f70cfa9265e2b46e8700bcb727169c93bda64b3f549f80f380eae6aba
MD5 bfc57d3b756bb133d2871975555a8ac3
BLAKE2b-256 76b2bd66fb206c4e16d53f2fa4e68b7dfd2f86cb0c6a7666ecd2f391c9c33a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 aa377ac5196cd342d7b8c4032e1335aaa5114168dd0acdbe5aa2be48f1ffd5ef
MD5 a8944bce92f5621cf6940c076b114669
BLAKE2b-256 98f0dd18700e1fec8415332267ef3209da763b284202efd6115ac4038bc84096

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fee38121caa41ba156d1c08e633619560551d82030897c84c424c47e51024459
MD5 ab508620d65b74e81d27d8ed511f5c3a
BLAKE2b-256 1c96c96b2621b545fab80c01df64cc61cc5de582d1b9ee792fddb027129da1c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1b5899be5e392fb90b51b7e03c8707e4dd33dd5907635f3e156992678115fcc
MD5 ef70c681f33242bc4170b234e6c5a37d
BLAKE2b-256 41540111ee7ecad8156780d40d1d6edb3afd759d48972e57d009385bce399570

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c67586aea118066aaac6dff2754f20c82404f400cdf672d5ed2eb5d86bd4c8d6
MD5 e636b2b45d09abe4050d612925a5499d
BLAKE2b-256 2e75ff9408c10c6b0ccfdbc800b7a0cb2e12ffcbceaca65572629ee2ad5245ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4b4a7c1ebe0ef1b61ca0436832f1b35c30444a9a77b56aec91dd87775dd62fd
MD5 83e60ca43847a0520d06a0fbb50d018b
BLAKE2b-256 39d1cce492e9d44baec23a934fa9cee2205c0a5615863199b372ee8200e47e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c83022b493920bc7cfacc59eabb0fb9381259afa833d43cd6222d7acbc76cf5
MD5 ab8e49681471536cbde284dfe540f107
BLAKE2b-256 10e9faa8e4ac82baf84d946da5709ecd269e28a6e41479f750717a824817dc30

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27440d6ba00556b54736e97307ca3f34cf48aac0f37c191922197cab17c6307d
MD5 e2e17e931a806a4eee78c68898040e9c
BLAKE2b-256 744906c6171be9aba3034210c827df1640ba01f46677ad854b195b8e2f9bcfdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlrl_common-0.15.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7277794aac8093bd1eca1733077170e29f4c729dc3f0df91ec6477c32d54d66
MD5 c32a2d78fc6b7d5eddbfe8fd6305cf5a
BLAKE2b-256 5ca0f2746b3370f5cfc0106e89804eee04cd0a85e6e64619d68a04a5b3c3e2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on mrapp-ke/MLRL-Boomer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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