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.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mlrl_common-0.15.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

mlrl_common-0.15.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mlrl_common-0.15.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mlrl_common-0.15.1-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.1-cp313-cp313-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

mlrl_common-0.15.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mlrl_common-0.15.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlrl_common-0.15.1-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.1-cp312-cp312-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

mlrl_common-0.15.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mlrl_common-0.15.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlrl_common-0.15.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1e592ca054e1c1480fe05ca1f37b169c0acfbfa1f99731c371bbc6c6562b2a2
MD5 a3535fe0db308fa11ad282571662dc60
BLAKE2b-256 7225492d9025d3724cfe66a9cb040561a6270f1e0af47283a2517c49153f1887

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6ccbf2087450d6c354948a0ec984b0da12ca74aab854c7963f8e08309ab7228
MD5 385b81482106c21ad67d321849a8fcd4
BLAKE2b-256 683a3092f124c10c778dbdf5169158f8748b90d95605780ea83ff0df051d9481

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a053b382d152763fd2f7e32f28e72d602f0213a68d9b4a29df6a5cf5a6e65d6
MD5 2a764b2c463865051f18a12997a7a963
BLAKE2b-256 da0026b8de11cb53ffbfa7f15de3bad8388d4e08b8c98ceb1cd0e199c2300364

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 702ce0da62fc38fd3f84f1fb5ebc9efbd6c1b11e0c175319512f4fa1b5aa13e8
MD5 9769decc880dd02b8bd6152f93bc12a8
BLAKE2b-256 fa2db2935ad350739fca925adf515f9000981decf43fd99c77785684a291ee49

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e6891da2d6dba86e3dd401e6f54845f3efc7bf7abbe2b5fb638eb28c85a603
MD5 1af5e93b3b86ab9bfec5a924475a7ee3
BLAKE2b-256 35a1e0d755fb0a4f9b1278d0e09a8d0ec407c9631186670642a33bbc1fd9d026

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 50cad0dc4b89e37c0c766e9d92a325ebfb74a0ab9bd963448a9792b1bd143c6f
MD5 249c79be201c5e0bec334bfa36faeb1e
BLAKE2b-256 7f5cdfae541c262155eb3a6cdb6d84024d5eb5566a5aba6d72b68821de1e702d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 053ef8a768ccef29a3847e9434c47f8a4223954defb37775b9fe4f8ec68b524a
MD5 d54a2784a2b58301ddba1c2d9cc55c44
BLAKE2b-256 3b889630bab92a7c18d489489e260378c27078bb94a685f24e21c21cb4471842

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ec402f929508a59235cbd4f0fb39942b9373832bf7f7f68cedcfb4d11509cb80
MD5 4b696cf2d66caf9d8843056f6f6014b9
BLAKE2b-256 0b1262c45ab0d0447937770f16b6bb593a91a4a352d19b374f649fb0af05be34

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b764dfcf7b07a05b38b7a7875bd271ce958db087793e2f7723af28e237b24eda
MD5 9d342ae907a4cb4ed5c5272dbbfc4bfa
BLAKE2b-256 80eb09963c04c10e4d921b19f409b5c461e8d7eff5a28eb3a8117caf741fba5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5349c592d0689b59b1976496a3f2de5680e5a25b90c24048566abb8d54e4ee1
MD5 067f43e652afc25e495f406721311c3b
BLAKE2b-256 bd97c50b44b51d8217794d97a1e79e83c7e7469b37b00344576ca6795b8abb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4a11e248ab4e2c6319c11c34ac1277fd42697b3b52dee147b72e244a6bad28f
MD5 d70e36436e0efce93c7da8c3cf523ea3
BLAKE2b-256 f3d9bf6431576af627d9a3a4bb2520e2b5e8f333ae9e0a0bf7b7a10207e46cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5db207f6371c9c3018f554c1d25e2bd4096cbc7b5fe7d217a261821db2d5eb72
MD5 86b932c196c0e02e6b40fc971bff37d5
BLAKE2b-256 f3c6d8a30a97ec5e597d81e052798a5a73be4e69d640f5d08683bbd8ae692397

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1815d989bb0ee4f682a2cdb2739e5852614f8fd19ed66e362091d922033b121e
MD5 a95af332fcade11f12ae3cf9a0b34aea
BLAKE2b-256 6f15a05cf4c45e46aca3f5978305fe0466db72a24c9dd1d8c76e1fdc259a9c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd785bcbfd2432f4ee3a6d20765a2ad9faf0513662ea488feb7f81c13f483642
MD5 76b15828c30ea9e610cbec9aceb41fda
BLAKE2b-256 4f695bae4b9e5d3c72d76e15bf6897e6eca3ebc35e726b4ee9dd5826c28e51bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 49482f39dda8de5fd046d677d774c39826694854efa5d6ada591627cff9974c8
MD5 b66be3d91be5b3867148aaf26d7bf8af
BLAKE2b-256 6c1d784e6d3040025ff990f00d6529fbe998c43964928a63d948576eb52b64b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5bf4d4c21c93e6d7f982670c8cb3cc52127fd55bd7c9257cb4cc679c44205b5f
MD5 c66b801a88e367a942f17fcb6adf9188
BLAKE2b-256 a2fda77c192174af72e3ecb6fc6a210201688ccb2f983049a129d4e08004d116

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51305097766cee6dcf9cda04b312ddbd8fdf306c9bc93be18a8fc1a2e629eca4
MD5 27f5a8a1c55df69aa688097f2e7d9b67
BLAKE2b-256 1811a1ec87dd3399fa6d9c028bee84ccb728160bd1ff25b65a3e3db76d2073b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c74939114890eb598d09620a04cfd379650d05f51ca068fb9b647e4b5db6b1c
MD5 8a62cc200e69c36ef1586594e16b19cc
BLAKE2b-256 0ed6e9fc9622c26956489d47469b660449db205fd9fdcfdacef3141825654fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4af5675eee673fc5309290f5e490563a37f95d7b8b582a7398749acbc1cc087
MD5 c16e4f0f40a524dcc007b61ae76b5d3f
BLAKE2b-256 f1f2568f3fd71ca1296906036b7adddea6fb230e8ab3e78404843dbdaac99d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be1f8ffdd27015df11edc162313a849f650a05b44ec3a2387ff7b344991feb7a
MD5 3c2a080e2e1e7f3080fa1fa940b6f29b
BLAKE2b-256 27602db778427539ae1a4bd18492ae0e2bccab9550adf2b15fc622ddd1542577

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9df91772aa9a23b87c51c9ef4636a8fe995478b124cb26ee467fd579f11d4ac3
MD5 5333d3f6ae0a82268c51eeef1ceaf90d
BLAKE2b-256 d3fd35ed72d36172140836c095285fba1c2f6435190cad9a2d651b42a1050674

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 691cc97ea1b5b3e04ed7c6c493bf8c0bd27bbf4dcdecbe7287fb0f9f19bfd700
MD5 7aac5bc0487bdcc7a445869e13f45a64
BLAKE2b-256 db77a2b266c720fea5e870a3ef770bc235c0f3a5a438d5c6ccd21e50725648cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 69dc68e18becc985395ab7a67725ca1150abcf16caa57f3fe3522d39e57705d4
MD5 c41ee4ff0066ac4e0e9a907ed3e720fd
BLAKE2b-256 8297c295fc87051003c7119cde07f8e3f3b9049f86acd5cfb00da094da8c99e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0fed2e82c812756a27f64b9cda4b75a84e41c8cc233b20fa4c442ca72fd4295e
MD5 9b225d89d2ffd1e1e5a2e07f7dcc15bf
BLAKE2b-256 de41659fcf1aa9155397cbcf14ba31ebca637e0b6a7094ce42d46bffdc2359a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc531ab38e52599d8d39a210d80cce669b22717e7b37ec4f04d646f6aa3fe015
MD5 d8931b0665294b08f52ed7d354afe990
BLAKE2b-256 ab47d99d21772fb759bf06909e67313c610dfd22136a08df59ac73e203e62ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 609f7b29daeceafb0ab5410fb962202ae7e344df423481f8f7e3c92b5f47a46f
MD5 f9b83ae8cf6923c0b4fbb641b451615b
BLAKE2b-256 3532b4eba5a8f60a811adaa9609378026c1ee89c55fe6d0628e7313c4482cac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e4480ed7fe39454e14ef09fce01c2a120a018a6e7336a2d3dc5596ea343a666
MD5 b61040b1bebfea1ec9f260f3d5142c97
BLAKE2b-256 3a0209aa7aefb42d730c975ac621ad378664305fa8a8ed4f4e430443684b5d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ac4be68360278830512a0772e4e5f36edbcb26deda165e3de02a68c8ca242dd
MD5 3293c911f316c5a83af3706ba7d2d2fe
BLAKE2b-256 e597789cd329cec2a89da721493cb1b0431a13f1c9d2358f3e4e8c7fb1da468f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eca364d3910a2fba4b6098c801e0ffee04a39f8f8def3f0c4be21b3b03cd6fa
MD5 82825c2b629f695046d64f24459c7b4e
BLAKE2b-256 42e3d91b863231c8a94831144b8fc49a7995950ee27e3e0bec90ca243a05c381

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b43f7c6d40013f2736bcfca51d915e2b27a395284795f4d4682c8ba6580b16b6
MD5 ee5ced64be5f61e2da09dd6ffd83e75f
BLAKE2b-256 0b3f8e302c79322a5d4a2c1d28088d1fc8fbc64f9b155fcd9bb432d974a0b85b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlrl_common-0.15.1-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