Skip to main content

A small library implementing several interpretable machine learning algorithms based on FCA.

Project description

mlconcepts

This library is a wrapper around libmlconcepts, namely a c++ library which implements a series of (interpretable) machine learning algorithms based on FCA, e.g. [3].

Installing mlconcepts from a source distribution only requires a c++23 compiler, all the other dependencies are automatically fetched. If cmake is not able to find the compiler during the installation process, please set the environment variable CXX as follows

CXX = /path/to/c++/compiler

Basic example

Assuming that a dataset containing a column outlier is stored in the file dataset.csv, a basic model could be trained as follows.

import mlconcepts

model = mlconcepts.SODModel() #creates the model
model.fit("dataset.csv", labels = "outlier") #trains the model on the dataset
model.save("model.bin") #compresses and serializes the model to file

A slightly more involved example

import mlconcepts
import mlconcepts.data
import sklearn.metrics
import sklearn.model_selection

#Loads the dataset.
data = mlconcepts.data.load("dataset.csv", labels = "outlier")

#data.split takes as an input any splits generator, such as the ones of sklearn
skf = sklearn.model_selection.StratifiedKFold(n_splits = 4, shuffle = True)
for train, test in data.split(skf):
	model = mlconcepts.SODModel(
		    n = 32, #number of bins for quantization
            epochs = 1000, #number of training iterations
            show_training = False #whether to show training info
	)
	model.fit(train)
	predictions = model.predict(test)
	print("AUC: ", sklearn.metrics.roc_auc_score(test.y, predictions))

References

[1] Flexible categorization for auditing using formal concept analysis and Dempster-Shafer theory

[2] A Meta-Learning Algorithm for Interrogative Agendas

[3] Outlier detection using flexible categorisation and interrogative agendas

Project details


Download files

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

Source Distribution

mlconcepts-0.0.1a3.tar.gz (44.6 kB view details)

Uploaded Source

Built Distributions

mlconcepts-0.0.1a3-pp310-pypy310_pp73-win_amd64.whl (217.3 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (264.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a3-pp39-pypy39_pp73-win_amd64.whl (217.3 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (253.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (264.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a3-pp38-pypy38_pp73-win_amd64.whl (217.3 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (264.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a3-pp37-pypy37_pp73-win_amd64.whl (217.3 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (263.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp312-cp312-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

mlconcepts-0.0.1a3-cp312-cp312-win32.whl (217.3 kB view details)

Uploaded CPython 3.12 Windows x86

mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (270.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp312-cp312-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mlconcepts-0.0.1a3-cp312-cp312-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp311-cp311-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

mlconcepts-0.0.1a3-cp311-cp311-win32.whl (217.3 kB view details)

Uploaded CPython 3.11 Windows x86

mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (270.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp311-cp311-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mlconcepts-0.0.1a3-cp311-cp311-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp310-cp310-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

mlconcepts-0.0.1a3-cp310-cp310-win32.whl (217.3 kB view details)

Uploaded CPython 3.10 Windows x86

mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (269.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp310-cp310-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlconcepts-0.0.1a3-cp310-cp310-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp39-cp39-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

mlconcepts-0.0.1a3-cp39-cp39-win32.whl (217.3 kB view details)

Uploaded CPython 3.9 Windows x86

mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (269.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp39-cp39-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlconcepts-0.0.1a3-cp39-cp39-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp38-cp38-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

mlconcepts-0.0.1a3-cp38-cp38-win32.whl (217.3 kB view details)

Uploaded CPython 3.8 Windows x86

mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (269.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp37-cp37m-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

mlconcepts-0.0.1a3-cp37-cp37m-win32.whl (217.3 kB view details)

Uploaded CPython 3.7m Windows x86

mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (268.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp37-cp37m-macosx_10_9_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mlconcepts-0.0.1a3-cp36-cp36m-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

mlconcepts-0.0.1a3-cp36-cp36m-win32.whl (217.3 kB view details)

Uploaded CPython 3.6m Windows x86

mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a3-cp36-cp36m-macosx_10_9_x86_64.whl (201.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file mlconcepts-0.0.1a3.tar.gz.

File metadata

  • Download URL: mlconcepts-0.0.1a3.tar.gz
  • Upload date:
  • Size: 44.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for mlconcepts-0.0.1a3.tar.gz
Algorithm Hash digest
SHA256 ce69bc6e9b2fa1cb681a0a464f0d4bc3c48dbde2abdf40c01b9debfe7ffc45b6
MD5 4df386f67718831146c1f380a2da3582
BLAKE2b-256 521947f7dc0965c23cc3cd3c04fb3faf1e8a0012f3d4e1e3f5ec9e33630a021a

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 379e7861be7ee0a9a5a2a96b7b94183894df4db8a47ac1fd6d9c065d78f61b49
MD5 a876270b08285ad4a40b56faaf33f309
BLAKE2b-256 987979f19655077614ddaf0cbac99168ecf2ea34aa30bc4009d9af4c5c68b869

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25582f6b040c8246f8416498773fb9df0f0a2d5c628552a9d237cb5453966e78
MD5 eda69956debdaef1c6948f285f7eff40
BLAKE2b-256 be83bce8fcc642d296a882d26bb244e0ed55ec09998d16da021da02e05c992d7

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 518c5a4cf528a9f3ab2b8fca9433788bed96b8d3040827fd7e8338fdb1d7e9f5
MD5 43962a122c86c7bf620c8f163362c17f
BLAKE2b-256 1386fd6100c6994b9ff8e8c0a8aa830cd980e16129c27937a96a5d69ac3c910a

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 975540fc01919e435fd65009dfd41c76c3f9e1df4921b51fe4788521b8702d5b
MD5 58728f06a3fbd8b112715c4b7654e220
BLAKE2b-256 7805e9ee58a657c8d4f825067d4de9e3c680953b8d54f6894b88f13392786fd5

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1551af39042be69cf9a83feb843254a17d4cc5d31d86e45bb041180f1750413c
MD5 dc27f65d52496d6e86e9c1dc0ae79ff6
BLAKE2b-256 c6ccce52924dbe26f6caf1eb7fe8a428539fc1eca69f56bd68fc6e6ce6c0bb7c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 648736508eb8edfb418fea5d8a812f09167d0b23edf2f0e752796aea91b14694
MD5 e9b740ad2a2434dea698e4811336ea69
BLAKE2b-256 75d0f9730d5af9c2bba16444e6301c8aa7c125d4a9b052ba02216f7267d9ff7b

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fb566b923e57f75a22258ec6b6f7d5dabac1b86b3f8dc058eda7632dc1e4556
MD5 dddc88e9dd45521d9274ea2b3398392d
BLAKE2b-256 a527eabbdc8b7cee539978d53cdd309d649fb2d0b0fd24c557e44af8e5bad833

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b16822c4649a2c5b58e92b511b036d21ca8900ebdd4f4ec81b928873b2cf48f9
MD5 53ad616ddbb68b8968a2ebf5b64c7687
BLAKE2b-256 6c0717449bc6feaa51f3c91bd8957d2067a2cde50ec93bb7bbdefc134454bcf1

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c3ab08f9c2eef7f18d48e80c1fb354a2a64e6ab2ffbcdbd6e37d39d5c83bfbc
MD5 cf2abc5006f18c30b2fc80c3109c8573
BLAKE2b-256 9b7ef3c452e554368f4e2104847f8f945a5721be3b4e5bbd67094c561f7f7d07

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a170c4d2ab75d691994407582e3dd61b1bffea08e20acc4f0db30d05c9623464
MD5 4f6e5467752a6f63c9ca07b3effe719b
BLAKE2b-256 fbfb321c8b590a97e31df36b198568a70ea395a6cd566b1ea1f864597f389b5c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 be91ede4e0264cf4683f9163aa10339930441a3a081b7b2a79064053cb10fdf7
MD5 f86d33f01250a731e707a8b778a779d0
BLAKE2b-256 0335249a8faa7c7c4b3480f0714a39951bafdefa5a57f5ea110c446c8e4a2698

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72c4d78308b605918c528bbb36af97c7f14a1b06796a0103b8fc187abe1065cd
MD5 76a2e2d2581b8ec9234595abe91a5215
BLAKE2b-256 74cb28643b99a7fdab916e85aa5fc6106da80e1fd843556160d4c77427d6f604

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 feabc497419bca42a42341e3995edaf1026be3be23729be6e946ee3a262c5bf2
MD5 16d857f93ec043b447a2f8001eb1d47b
BLAKE2b-256 53b55239d0459020a3fc783adbd2713ca71582a9c3d3739e32fb827683fa3d1c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2303ea636ac05ec800c6fb776dbc3441e3a98c06bc3336baf87fcc3e793433a8
MD5 dab76f19f189295e46c74c9bccd46677
BLAKE2b-256 6c333970e8a7ffeb12360d9b1e3691d92182d279a51fed2c6ad67ea963db4a9d

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 567e41a9aa025fb653f9091064afc7f1dbda00c5d606182fabe34e93e0196498
MD5 b09059f552eb0b43064ce22f2ef8cb23
BLAKE2b-256 6c083650c999b48a4a32624f127065f716b119e0e35986006c06556ac335a953

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 adb7e7320c8877832ead3b49cd73d51d947f07517f54b3f3686bf90f244e44db
MD5 9b89771fa899e4cbb8f7140b3acbf0df
BLAKE2b-256 077b4d3c9a120569af98588635f9a872a6496ecfb9e77c8f58520e1fd9de4d6e

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 089a5224d5840ae8a0b577efc0b13741dfc7573a87190737bd85a5159c2366e6
MD5 873c12336f585a29fce39a1777ee3bbc
BLAKE2b-256 fdef3a6c040bfadea518787a5b3604fd7a3ebf77b9747482b2f2542e3070675a

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8cb76bbfc5f9607931b200295def82de42fc0d4681f6ebdb849728ed84ae447
MD5 af883ddc500f0d9a4323be73ca5bb9f4
BLAKE2b-256 ec7fc1caab56d9c0ad97593c145a1eceb4a3682a6b4fe9ea20fbc8027564f658

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 793c8d712b47cc542f644d31cdd5a25b5e62e53c74e8b862e3eb7a14e79174e0
MD5 986f579a2ebefe02fe34561dfccd13c5
BLAKE2b-256 42fe693dc6e8da3de9ba03a011f4ad124d9346aad228eb5cee78f2e8d18afd9c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38507a21678865d4391725da940657c45860665a050cc64e2e31d4838ded87cf
MD5 669062b21434b88c6b1c2f67ff6e86fc
BLAKE2b-256 f1c8b44d75bc864ab461297f7bbf227c21e8376bca32a64611272e39e1e28b9f

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98c35228bb38e34a1d4c2148442749a8d90d9b52684fa10fe17dff7047656414
MD5 d9244fb5cd529ab57a4b43f9b7977cf3
BLAKE2b-256 bc5981ba57a334ec975635f0f0223bc55af3bd1259b828402b553d8f8f912166

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a819b40fdef043c9e80b96a1c4b5a2ef5e087fce5ec06745d18bab835fdbba3d
MD5 88f1c96a58ea8366f2e0d7f0bc7848c0
BLAKE2b-256 c89ae6337d8df38107ad08b10dbcbc071e0f8a0c5e701e8690cf71de4b9d8355

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37ecac8c5c0307a83d034e4a9942e22ec2cb64c7962b20c5248d7ecc88a14040
MD5 d38878a83bf0efe662588bbc10ad75b5
BLAKE2b-256 176557d8c0ee5c5aa607a36dcd20676dbc633bcc26744dc664acbf90bb7e6ea0

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adcaff50f08f8bc1c4cbcdb937d215359a3409925c7a246156836cfc7458b6ec
MD5 7545f3f2fb4362c4479d7db356f92e68
BLAKE2b-256 a5c1fc8408c1ca6bba0fa8fa1e6393448201368dd763e93410e7afcdbac5b0cd

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dec8e157ff0712da172c8915728cc1dd28aff4a92a1103a976fa42c3e5d1ee62
MD5 7d827e665156c191f8ec5688e84c8fd1
BLAKE2b-256 94550732ff5174463b3506970b2b082d043cdcc49086ad6c573d660a9cb9f405

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68568cb940fc8724961242cd636e53cca72cae0ac3ea9799f449ac1d0952db68
MD5 85375bfb13d03823ff220fa8044dcde2
BLAKE2b-256 6ecc704abebb16dc9c0e71f766c3b26d25d0a996f5cbace140bcf97cc4f17daf

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d468a391cb1ecab5199407929f238271dd038d9ea0e63e13649797ebfbe2ae2a
MD5 dc078c869ae62aa646b6671800071935
BLAKE2b-256 d1f8083176b5f32b2219fe134a6085e13691f813bccc4690b505874f0698e831

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9aa32455a49664ddafa573e1ca1c444575308884452b5479e251768010e5591a
MD5 1d8af31eb5a64baffed275f4a2581c63
BLAKE2b-256 9c916eb908edb0e3fbf99300e186f17566972ae4330c39b04a658896a71bcb33

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9bdc2d7273e094c9ed3393c271076a78dd6e212c7337494d473bb201170123be
MD5 7aee5ab410583a67242f0950a474b0a3
BLAKE2b-256 3c042e7edb24116cdc844d329ae2a9a667a22c517bda113f58df6e8ca3544eff

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff129e7ababa967cc5d96782608a111a9745dacba7a13f1dd7a05a2d086cb7a8
MD5 6640a58d1b4c4524b2077adef2ce5952
BLAKE2b-256 1b7922597a20ed1984739925e61d6f964a9f31ade5a1415162d1e4a2ec96a1a3

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2f89ad300c63755ec76b824206a086dd59ae8d663915ab88e806c387462b4d7
MD5 e9c46292e1e3d545af9b6da147c05f98
BLAKE2b-256 1877a5239ddb3a5399150998edb190640c5169f47b2b42ac189180634431e9f7

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84c5926f976c9944451baa03a620249f5145a182c8e4b563b010a2daf724fe48
MD5 b924038d7de5168ebe8e5fcddd048265
BLAKE2b-256 332a3fecdce5b283d3ab2f9dee8d95b8bd73d6ec4d5687ba7b5d1bea1624bfb0

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 631d0e4b1aad8566cbea0a12bbf7ddb717398730148485f2ddf1f285637042aa
MD5 d425edf088ddf20e97084d3cbc2ec269
BLAKE2b-256 4a9ffa77baafdcbcf1dc0165ed67667ef49b5e8aeb83ad3a5c9bf1aca3a550a7

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51f2eae68cd8bab05f3d3d22e8b2f80de407f64d83a712eecee39477e1f72627
MD5 328e997a65749b6d8dd05824c8941a78
BLAKE2b-256 c24035a07e8ab8cb3bbd64abd1dfb6cfd97174a5ba67a9b587974fa9a1aacc04

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac70a7f21fddeda530dbe0d99d4e1f1f86948d317d16e74f56aedc33835cd6b1
MD5 e98330b4433ec32153666aa463677981
BLAKE2b-256 088af1c90e0e1bd7a926c41de145cb3b97ca28c22431036086291f01019e380f

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 031109c5411ae4260ef44ea7d2e1f8a59e2a48fa9dd3ec10a484ad753faf1835
MD5 a7a1acf03fd098d3e9ebdbf70e90f418
BLAKE2b-256 577dabfe7a2443b8f33f393a20d1d6e33204bcda1de70492ad74a200f8a5675c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e024086ad920d75290f40be14d63f65613a56f0aebb9f271a8c72882af00be54
MD5 2019769e24ccc8a4d446fe3ccd0868b5
BLAKE2b-256 a0d97566f9a00081314dab07afac57bffb9bdcd1428232505ea5f60eaf9de7b4

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bdf5b59dc43d16b7709f428cfd2bcac9676a4c1001a0ade5c9f15dc8ab0abe6
MD5 b336da697f52255b314b2d9357d629f0
BLAKE2b-256 89d72c0a4b1c7b3f059fb1bb2994bf8c2d5f77e63a3d4d558e72b8f7582c743d

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 106a283ea0565cbfa77e5244f192ccb2ab757bc6dcdd01aef1339c43d9c0aaf4
MD5 a8f7821e11a80070d7cbcc6ca23f1679
BLAKE2b-256 5b5bbd1fe722c8e75e75677337503ceb12e03efc9d4cc8da4ef1fa09e9ec2367

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d60dff3a91074f5b2ab08c90c0b707e0a4cb678d2ffef0c2202efb17b7a098b1
MD5 fb0a5693ca8ab12c2de3aa2cec0fcecd
BLAKE2b-256 0fccaf6db0d910eee0a5784a3c64e30dfc89331ab8263e5f95dab370cfa6ae26

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f9572e9bbff597c328462de3d5f9ec2637d9e572c57627170f9d273a615f822
MD5 ce7329020ab474b0113db3ce63f9c75e
BLAKE2b-256 1983bebc05215b5995f4c33d4a44b7a281e943114b017beb5a3c71254647e310

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da69f497aa3320a6e07226d835d9747f2fe842e88cf65fd5c7b150761b760f6e
MD5 3a08403f6d3962fdbd32c7fa8609f7a2
BLAKE2b-256 945cc6d76398ed4a4451326c73665427e6c9371cf04f0164a91f42a6e7f0bb17

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 242b8463064672254906376569513d656e6099a1f248d2c96476e9a9d3ebe7c2
MD5 c759bd7fa3c3843c416fe8507e9268f0
BLAKE2b-256 3d5412e5dbc75dfdd96271905566743bba573010e070acf17d36d444488fdd89

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e9b40d8343e8a1cb1ff47fecf7987a72e20d2a6a97270c34e7d2752b8fe34b8
MD5 67cee71f8a1607ce90242b361dd0007f
BLAKE2b-256 bd51b3e10d3515ea07e5d3c293f2622fc25a7b45ff37f8675b15f8245cc3d206

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-win32.whl.

File metadata

  • Download URL: mlconcepts-0.0.1a3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1ff324a4c71fe67ab80e75b636266200b53777f37e893163c479039916606322
MD5 7d2bbef1f6b17711d22b545daedd0e99
BLAKE2b-256 3baba04468a4413207a1b0dbd1a8a49929e69bed988cb9a4b4092f1f6e10d507

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d7142df0fd8e49ab06aa108f20643bd285cfb6d49c4069032137dfaabb00d75
MD5 3eed872d29dc38f306f7622660d86411
BLAKE2b-256 d6c7da87c4b9336d0da3ff68da632e7d670d5ed11230001dc34cfc4d751a9a68

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec1d9ec04581518c0e17931f2939bb635a6c1535e63ca394ad597c8a870d9e8a
MD5 a617b529d47b65fd1232aa521d1cc530
BLAKE2b-256 602d79d283bf7f30093928f932553838225db64089efbc6e709bc456be90e633

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 605fb45b118664135d9d35e850ca1121b06e27f89b9b3179774ee714142f410c
MD5 32f2b0c4d041db8f78bc8d86f410638b
BLAKE2b-256 9b3d89c49c9d61cb2d7ccdb6bf8be3f72a159edf5d8d9cc9626312926c247f33

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9204c1687489b4f325ef24572b4be4f56db6f00d7f8e2bf9e0446b19dc0581eb
MD5 ef705710b30c3069500ac7bbfa864bd9
BLAKE2b-256 e7ff0855918b948ac631b0b11476df81ffd43626ae79fb236e2ed81cacf4d10c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2b72359dd7be79ddbb5c0bcf0b39d61517bf4ad7130fb54df5fefe66985bc42
MD5 efa585d498baf70416e68d05374d983a
BLAKE2b-256 580f7abf8744385b8ead7ac2771ad7c007912172f4e19ed08373e5074ec629dc

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48766c2810d5d63eb2c2effbae661a51e994f3c6b8ef225d2e267877b74d5f26
MD5 41f443a4aca2f15d84704d06b931f84d
BLAKE2b-256 455f8b7ff12294e205009262a906f97a05368706fe023573225b04a4f5b151d5

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b3aa86799b13be4b21219e99a2bae4decfb852cd78cc316564644c57cfe6e1a1
MD5 0ae02a0d2cc97d144720b0357cda41c7
BLAKE2b-256 6949ae64f265e8215b6933c1d8e34892aced022dd8243d8e958ae1bc2285d037

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-win32.whl.

File metadata

  • Download URL: mlconcepts-0.0.1a3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 368cfa43cfe4c4aa897f22e772ddb8e5939ab773c0c6ad70e686f1034fa126fa
MD5 0b11262c3490d39f7e4f4d873e15365b
BLAKE2b-256 a31aed1beb6e69425eb191b0e5554540a47216d92beea9c29cc8c08b26d1dd0b

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67a697a57c9f35918351d4ff3a3d646ac774011f47032c214cce22c1bb819ef0
MD5 6a37c3bfd26cc373c2886344c5d825eb
BLAKE2b-256 d1c57699afa3d866fa725f245f7753e9c569e25a27e2f261e7c0485c740a96b9

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a37111417da2958d87d79af8e5f0b57832445e0411aa4b3943d3827a3fe3009c
MD5 bd73d05c67fb9e32e589cd7da48e70ad
BLAKE2b-256 6eb3d064bb214c7636effc8c0491b8be8638598bf6ff261a5c1c27995e57d16f

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63879e5475529854480b4fce760b3a37ab7dbd89d2ffe6fe2142a5d09b045f5e
MD5 51d5a2471ea3b2b5016cadad4817426a
BLAKE2b-256 60802abb2ee7bde14f28b73a1ea6ae95a06a06859213ca7fc1f3fbd0b878ddf7

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5c759d7bfd14dcbbc80775fe21ffefbe99bded9b9af71fde0dd589e865164bf
MD5 e33d47e34aaec579c683d9950aacdca5
BLAKE2b-256 16ccf63f2559fd7d2940f2301326cd7c96a744afbef52df64ccbd11a0fbeb62f

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5ff21cd4fbc1cf950ce4d71fd744bde483d84e62495716d1b441269ac11688ac
MD5 48a5a5d0b15d8d5d021aaaf2c98bcdaa
BLAKE2b-256 47c767ddbefc83eccfc46b5053902d90e3daee97e2589542e94be6f40d6161ae

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: mlconcepts-0.0.1a3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 21a99e4355938b596ea3ded8d2b73a9ffddf8f6728174c70a526d028f92acadf
MD5 551115d22b6e71ecc467e984bc1c28fc
BLAKE2b-256 503e5f98433456d3f1feb74a7e1f8dd6b23e469b37c362ac91108db4b9ca98dd

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36158699a0ea1d697a7cfd717092a1fe8b0251f472218480fe1f703b5634dbef
MD5 96f4d77835a5f44a8ec54c07d1e1bb1b
BLAKE2b-256 f7aeb1d2e6db255b654b0fd0940ed6a37dbfaf31c66c00f5079967414f7267b5

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 635e6c878169c50b6b76ecdf7ed07f7d89c0fe2e4c3f76e2a0f27477a22759f7
MD5 21e2a52fea32a81fec4265faa790416c
BLAKE2b-256 b717de11337f13e2d230d6e75ec43b34e7df09efeba883ba5d5d330b88f39601

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e3aff8369c6d9bca29f8e5ad07c3c490fc2fcd330d4f66fdcae3b21e33efc97
MD5 7f7150ccca0ca307d6a44898307bba52
BLAKE2b-256 f3b077de1e6d044fdd234fcc2287d3d3966cc3e7d01c2117699014c99451267d

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85dfe8dc067c16c782da28f544ef8bce846fd8fcb39ef7fbfda3c0edb684781c
MD5 e6fb8b2ebc6bfdef8e4e8e9e9b041b94
BLAKE2b-256 f98887eefdf5382fb2b6bfc3edf5da67f36c052dc1e069cecc12903cfb8414f1

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 520ad8c2b3446d764b58e1209062a3d051284032f1af17a1c7db026de69e2a76
MD5 1781705982a0f97001b0daa80555b6fc
BLAKE2b-256 dbb6bbed033eb9915555dfa050d918def2cec4ee57d69414b74997137d502f6c

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fc38a4619446e6c19466d463fc7e9e7dc2672f245466f453d99c82b27297b4fe
MD5 bfb75c5e079a23128fa9ce950c09f5ca
BLAKE2b-256 ac39312ec4040191b30709fe5f8bd7af25485b7bf9b96b08e7f4ccfc5139733a

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: mlconcepts-0.0.1a3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b112a4a37169046ca0f138fa7f4becd9f8118d2e3a9d968a08dc15f6374cc489
MD5 60a7a9dc4fe7598102c4a1764b04a734
BLAKE2b-256 7d70b1177cfb0d48908bd5072c0a882e94c38fe6a461217a5a6906a0f52f0ece

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c595072c26609f1e88508b017483023b127877780a988dcdef27b96482682700
MD5 91a023b01d452c1b40476d2fbcfcc4d8
BLAKE2b-256 7811093ed27e1a53a63cc65891df9c2f8845b03da9a04c13215c60b9465500be

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97711c18ec0b75e16b95d1f3f415cb7ebffb48c15d7683d607005ad7b9bc1333
MD5 c1d93b803a6d4dbb91dbb84d9580666a
BLAKE2b-256 f564a7d4ec7283bdd3ddb7ee23476ebf9ee809a2d3f778d5cae9e11f24bdd9c8

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb06551499e61a836005fe99eb382bd6fdc3ace2bc7d2f11cce8d11a29768473
MD5 d8cef8c8212402f40a59b6e168174700
BLAKE2b-256 6cd0cb26e65bcd11a54bb4064e90ca8af9e3763d5c1b68fed0716d3f8997ad0b

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a8d3617c5252afb8297de377db55fd59acddc0595ab7ef36648dacf3460bee4
MD5 7fc5f1a00667779fe53ed05bfe036181
BLAKE2b-256 78755f169cb7bf44264e2d527e3798d8e39b7a392c4ac2d846284b52d71a2cae

See more details on using hashes here.

File details

Details for the file mlconcepts-0.0.1a3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlconcepts-0.0.1a3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a403653340b0d800d9ca569f96212187717153d4c06093e4d2797303e7f34549
MD5 a53053547a4461e357e6dfa2804a45e0
BLAKE2b-256 e7bec8225c832175712aa2aca31d03a70d34cd200a2b05b4c634f86cbc6c26b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page