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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mlrl_common-0.15.4-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.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mlrl_common-0.15.4-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.4-cp314-cp314-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

mlrl_common-0.15.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46843ee967a80c1bd42a732643fd6bb6dc7a2576c9dbb431edba79d0df676d87
MD5 e0d94c375098b50a5e97724fc8d34a5a
BLAKE2b-256 0b1e822164ea8be39677e722c90c154cdbd4d2494613cea3062fa0a8c956a0c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a1dae3f6ff3d61deb559787f6e536ee75f46484ab3dc678f200c3c2f760c85f
MD5 196b899a005c95c246e13ef1ce512561
BLAKE2b-256 935c7cf9655d9d4047be5d1c746a3144562159cf2196852912599057fc852f99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c53778ddf0c8fcaeee1da2b370a19e1b13fdd59996a0e499bfd374d67415059
MD5 11ea79042818351c79f32005802c77cd
BLAKE2b-256 51dc8fb0038b4965c1c3cc90c535ff7931deda81856fbfb41cfe194eab731b39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6e4d00428de69a123797b9b4f016886aa555b95100efacbc5d3ff37b1455b9d
MD5 16b2b9c6afac1d76050da1df8f6dc4a9
BLAKE2b-256 4396e3b3ef2a66829212159c42177d59f8f61be84648f710de5d83cf69cc828f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a1e891313fcf968c047e2cb411b5bd8b8fa3ca3c0cd4c981e2ab4544da2c658
MD5 b1a1dac17aca2ac15d160c47c83d774a
BLAKE2b-256 5e873b8380c2646f46debf5cbdca77934871e14bb785c3a656321a02e1777a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c94bb932b397b39b776293b9e91fdbab158eb82fd0632f8829f09e5b70bdc40
MD5 995b10baf2b97cb34f9c62d693c59891
BLAKE2b-256 6950732322a156c51bb975e827f9ccbcfb7209a2baebb11d7283fd15bd4a0e9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 678c159b12a349f73e314463119722655ebdb8d7fb58c6e624d39cd2f9462b7e
MD5 f2c4851039cfe25e76d30d26397cfcff
BLAKE2b-256 b7fb411fbfbd0f852abb2a0cf6fb3a4ce7fc87ee023feb79b9446babde5a60b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43e4ef1a82a43f3c8d89aee06f2d009be80ada300e21e3c2011455ba59cd7305
MD5 e53934cf6bb3f1a7cc5324aa880ab911
BLAKE2b-256 d16dd0f7721ca9de03366484263d5ee08bdbe4277ec8b64351cc9e7089d1d838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34fa04b741058d057fe6b4ef30e2c5ff066c50429b99bcd52e8a1cbf5563b8d4
MD5 1913065e7be0f80f7535450cd621e49b
BLAKE2b-256 7a7939637b842a53d8e04f13d9b3b0500b3498a7f5e09c8979b9671bbbc61a39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0861c15bd28847c439da47adca7cb8ed7c15ff5a526d785682e2b848a8c83c3b
MD5 c4b2aa63f7b60af14ceb1af3290c0fc0
BLAKE2b-256 b8982ea005c0ee0281ae9d5344119087f5f319d9111f66339b34e43d08222ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14c4e32d373fd02e64128f4b3d2467046e54ae7dea26f8344446e4f44093b75f
MD5 d6fa3597a4f4ba80eda4a361da52cbc8
BLAKE2b-256 1d31a64f6eb4c773ca466452e6c201dd99d3d0743e1adcd20d2425a4cd9a07dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57433a5d0518c4689e58bb092eb1a83254cff2fb602606f870cb8f2c3def5a38
MD5 845d2652048fe792f66a29098afa11e9
BLAKE2b-256 6fce9ff2450e41ffce7192917cef21620c24eae8014ba408df5799844ffeaeec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fedc459ac5f54e7cf185b481e2817af5416faa36b3706cf3a1af26306cfbf1f6
MD5 73fdc40cd100a5089f856d2790765782
BLAKE2b-256 a18cad9f568a0c9112cff8dbcf2cb9e9296dc4f0b9771ed8b77c6e051ec40649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f7371fb1a615d44a2a262a224657f8b5be3330670b1c3760dc60824dace6806e
MD5 743763ca7cd2df7024ddeb0f4e4fd851
BLAKE2b-256 d1a99669e5c6a941756611b586dad6eec1ff1d9d63956e02173e0df9fa9c92fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3866e93142d17443944b5bb9cfcb9e073a6ebb668413d4b1c37b30aca766b2c5
MD5 f3144daf4a0b4021b5e35f009fb6dd3f
BLAKE2b-256 cbd54be5c75424c6880807c5ac449d0ef5382df845f4ff569eaa46763eef78f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a83f57ca1b6e9bc2aae697886186dfc5ac67b586e560873340b1bad5f2a0fc6f
MD5 9423db87ccde709af8d5585348ed7526
BLAKE2b-256 ae212dd825ff9c3eca24379e6c436eb8219016ea05c079a9a30d7bd635b68379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0b3a8abbf53fd270a767cfbe699dc91250d26c7877965989116bd925c5eb76a
MD5 049a367e2eecc98fa0301482ba97b277
BLAKE2b-256 6d66d7025b349fd1c1d4c87e702ca23740f4a2a7e64c1b3acad04ba4ca4b61e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45a011536f030f1fc01188c0d3377e6ec3866a3dd8d088e470419b522cec4491
MD5 d41ca9cf9eee3cce53692552fb4d87ed
BLAKE2b-256 a72693dd981522d68203f6a21c6b474d0f962088fa3131adb1759e7baa20c156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99a7010e7144841441cdeda3a49952166e662e325bfeac32e52907a420e7e2e6
MD5 94386ea9fa4f3d54361b3f6753291908
BLAKE2b-256 edc39a35425aecd5da32ca332ea93bb37b5fd6513dbfa7dbc129341368af7480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43ac8e1224574036d14a2843395f1cf39c3f2fe1904beadc60af8056b01b1a98
MD5 a649b7aa1a1731c31863773e9701d2d5
BLAKE2b-256 87814bb27dd9c6b01a61454f65f2299cc718655a2eed53e66f32935c607f5043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 439dab0eea1e992c89ca60ab536d3ed97be492b6d750f13e13692e2afb1a7876
MD5 3faba4374b00d35a34b06df9c93a4341
BLAKE2b-256 92f2fef85554b55bd37f4a3dd919802ebaedccdd8100122b28f87fa17b62c9b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a0905a6fe15d674f6aeb1acde92dccd5a55356b9975598f5f64b24d4bf7b2bf
MD5 0dd7b2a92bec748968e7a00b3864c48d
BLAKE2b-256 501a03526eb489e415effaed83d9a470e9c6a8f7f3f103218248e247fd98570b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bc6d039897ea042fec2045df0b377e8b3961613377db034236ea28de8895a450
MD5 2682df9c37a06cbd0fad804ed6a0909b
BLAKE2b-256 4a78c3957325a59b015fe6aeb01666f6b212663176ffd136dc6c7dc3553c55de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0449ab395b539b4d2a77f456d1a96e5f53b4b6150d12b9726af65274770a51a
MD5 512fbc58621a3e57ab74fb633ac181f5
BLAKE2b-256 6c3ae1124f7342b70fcbafa2ac45930a2199a2c3770ee6f152fe875d60d666f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 054636424dd286c553a767b62abbae706c278ba35136be81283d044d5db3c26b
MD5 e392daab3b84e130af1b880919006a53
BLAKE2b-256 212e02b645e504aa9ea8aa5d15c4daa71ec78daf0fbd80fc2b129cd2157c7ed8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04e8ecdabb138f24b25d7ba49815edcfa0eac3436ef20da2662f59d5c1a31195
MD5 62f6ce76bca1436be5a661e731e78ced
BLAKE2b-256 ce8a3f5e4a51a9a648a5ff9f88bfa2b3e48bb060c86b752feb1ad49f46fbefe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a89f139c27a09d972683ea62a180f8bd50a90e60f2ed305b851016b1b562cc21
MD5 a7df4b891a1aac921f0ba81d24b07866
BLAKE2b-256 db68addf35008fa4f9f637667375ca84aac2bf722108b9edf1da7c310b2c68a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ceded7d2443749290d33279b89eb5246eb8d977c7a608a0468a7259fc6251270
MD5 d632aa9f8e47727f24cfcd5a9ec27d6e
BLAKE2b-256 fa6f80cd6ca7d4fc210dde1afa73204e1c3476645a8b7f823a50f86a41b8c261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d53a48092ff6cec55ac4d52a56ec98569a2cb8bf0f496ff2e9c9d52609fa38
MD5 a0e60446735195efaff73ca81d6dc17e
BLAKE2b-256 97bdc9ba8f488bd527bf97149f8a232c0bf0364bad9c45722ccc62fe9769bb72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlrl_common-0.15.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a4c6e080687a7958b2465092b9eedc73afd6ac8b0bfe0152045122dd3238964
MD5 d612148e71ac850fb702bd7b80f36d79
BLAKE2b-256 9258b023c38cef9b3b0a7f8ed002c0096e2b16ee0ad6877c5b87057989f24c26

See more details on using hashes here.

Provenance

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