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.1a4.tar.gz (44.9 kB view details)

Uploaded Source

Built Distributions

mlconcepts-0.0.1a4-pp310-pypy310_pp73-win_amd64.whl (212.7 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a4-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.1a4-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.1a4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (173.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (195.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a4-pp39-pypy39_pp73-win_amd64.whl (212.5 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a4-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.1a4-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.1a4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (173.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (195.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a4-pp38-pypy38_pp73-win_amd64.whl (212.9 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a4-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.1a4-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.1a4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (173.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

mlconcepts-0.0.1a4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (195.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a4-pp37-pypy37_pp73-win_amd64.whl (213.0 kB view details)

Uploaded PyPy Windows x86-64

mlconcepts-0.0.1a4-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.1a4-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.1a4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (195.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a4-cp312-cp312-win_amd64.whl (230.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp312-cp312-macosx_11_0_arm64.whl (178.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mlconcepts-0.0.1a4-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.1a4-cp311-cp311-win_amd64.whl (230.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp311-cp311-macosx_11_0_arm64.whl (180.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mlconcepts-0.0.1a4-cp311-cp311-macosx_10_9_x86_64.whl (203.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mlconcepts-0.0.1a4-cp310-cp310-win_amd64.whl (229.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp310-cp310-macosx_11_0_arm64.whl (179.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlconcepts-0.0.1a4-cp310-cp310-macosx_10_9_x86_64.whl (201.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mlconcepts-0.0.1a4-cp39-cp39-win_amd64.whl (229.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp39-cp39-macosx_11_0_arm64.whl (179.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlconcepts-0.0.1a4-cp39-cp39-macosx_10_9_x86_64.whl (201.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mlconcepts-0.0.1a4-cp38-cp38-win_amd64.whl (229.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp37-cp37m-win_amd64.whl (229.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

mlconcepts-0.0.1a4-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.1a4-cp37-cp37m-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp37-cp37m-macosx_10_9_x86_64.whl (201.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mlconcepts-0.0.1a4-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.1a4-cp36-cp36m-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a4-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.1a4-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.1a4-cp36-cp36m-macosx_10_9_x86_64.whl (201.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a4.tar.gz
  • Upload date:
  • Size: 44.9 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.1a4.tar.gz
Algorithm Hash digest
SHA256 28693397c1b47439283ce7bad79829b470aa8f0bc40273599581cfa060a0ea58
MD5 55c6e5183d327e3a8348d4f66c5d1173
BLAKE2b-256 fcabb142b6e75a2c76894b8bb8c669a62c1947b024166a1afdd34a65373c1fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7baf66c3ba2025c537e3f8538c086485cd07244068618545282b7ff5dbe467e1
MD5 666c51f67369b988c09d0db28a521744
BLAKE2b-256 3bd91d8971d8eae24c60d5d56086f4eb376e08e2056c0e5537b139d8a17dba46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d854ccedaf98cff5b764082ce4fbcf92c657e7d60865d8aec9246d2ddb1bde2
MD5 b31ab2614806b9873ba3e4ed391b6e67
BLAKE2b-256 957e60f968c2f24caf40bd4960006db22f7bfd21bbdfe17131d8a66d53bd6d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 940237100ad5f4ac3119009b13aa250e81ca0e982f41e750dea3ae3f4a6b3993
MD5 22bdd63b7603c8c40377fb82fbf6b80f
BLAKE2b-256 ff96463458ac46826274d4607b8fb60e4ea7229088ddeea7418d1ebb9f02cd4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54025c99c4a52085b9673670dca53cdbbc293d9dabe90a4248d09bc08c8eae9
MD5 485ed53cb1f869b0dd4fd72b34da684d
BLAKE2b-256 037dd7c84e26d0ed2b7253a60097c1ad7d82cfa4e927eda41f4774285cdfe214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a330ffb328920e2ba513997206487da2b1a045717eba75b07cff474afc5157e
MD5 0d965f794b17111088b7306bffb5ecc4
BLAKE2b-256 70a1dd7fedf53a72f2ca80926a67dc4ae28f60307a25649b5bc477ba5368c2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 17c64c6f79ac5252d554dcbc5d42cbe7793178276746d3e634caac7f7af13dd3
MD5 df20cd62c266197e47c852cfcc28a03d
BLAKE2b-256 3f6934dfc5414c6c1e44f6f9fa001a9e35cba4e739e75b30fcb12267d03c6c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcb04f27056f9d8ad8d45285b7cf19de5f5b12c1ac29580d3bd88f6b4c7ca513
MD5 4e7cd52f5d871ca7f0e547070506f6b9
BLAKE2b-256 b9378a42ecd62e02a3b3a99a027a57759068c65dc470cc06f430ff790c1aa15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f86f376e5129ac4b618a3493d74271c83ad2790015335531911a9cc30cc3674
MD5 011d144d3f348db7ef887668a0503085
BLAKE2b-256 538fcf2b507c71293d14a8fcd86e3952a364253c9476e8b7936d96eabc8cb8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 334a1ce632119833ec55d8d47abb670548deb1b2a673da93635fa3485ac5546a
MD5 2f27f391b55d632c5ddce5f77868c0e2
BLAKE2b-256 d73fb25e1e54e7bb0d49dfa33436bf02fb674542b1eb69ef2ea0ef86b4de6f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d7cb1dcc966df1c76fec2f87a83e465266de3517691771f742e92a1bca2da6d
MD5 3e8e81f98935b40b709f1d09a555d5fa
BLAKE2b-256 74ffc24c509e7733d1b0e72e1c000e539842c5f1e4070bd56023bf283f3ded62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a188f9df2289dd2ae872d73d42e671253f0cfd66096c3f35defa9722cbd7422a
MD5 9c44383ff881b673bdd8fcadaba30979
BLAKE2b-256 fc9b4820d2e78ad0cd3bcc508ab40cdbd2880051b870ade15d8cbfcf446d69de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4344fede7756fc8988a2c445a0a5d797d8e71e1de6aa7c47c46e9b96fd1287b2
MD5 6e91e92345e64528f85d7af7399b246d
BLAKE2b-256 4976a33bb32299931916071f9f3c76ebd6f67f6d8ca69279e87b5b3209330510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e41abbcde1187cefcdc0a2b0ff9c6264220cb54667df8dd711afbfe9d1b92b62
MD5 a3880c053600f4d51b54e18eb02cb17f
BLAKE2b-256 4c2752e817ac99af813bf7259a6c0809f058f97d978cd34230e68f6940c28aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9621a6c60e6770c1e174a8817d7480df868673a34991e6b7a5e2fdd94eb78cd
MD5 f659449e2e900648b290c5a00f21d43b
BLAKE2b-256 ae77e0203a7daf3f30dae57301ae96ca791b8f57f305d507d679f8732697e1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10e90c43680321bc8ee9cf86baca7a2c892fbb8234c6e4f854cde1b5b9ab20a4
MD5 dc3d5629071515daa5529588b7247144
BLAKE2b-256 0edebd1edf32f1e71a0038044d09cda493363ad39cee0f89c0a027182e11602f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1334f800c3f15b00703793dec39fe4f5332ea26ede6fd713d90beedb3f98a71
MD5 2c045561756d05744101deb7297ac975
BLAKE2b-256 583f272f5bb7ec3f0421c49d002c24bbf1b8569767a59129bc30dac9748d19d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 656d293023e47913e47778c398cae429bf8269908e772a77d2dd212c8a467b2d
MD5 70a46804563e3bc2e01dc4a7bed25bb5
BLAKE2b-256 5680b7c7d4722bcb2b3e30adf3676ee78cccdc354ba77c8b0d521ff53630c84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c0185d3e3e4f0e193c99895b0f02b8ff5fe9c9e5c50c850c37b25546382cf17
MD5 89b26ede66d090ae557ccca2c462bac7
BLAKE2b-256 c96cf233b3a05e762375ce6df4a1df002894d8281a313dae04490d2fc3a6cfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 387b41b64ece41af20af9b516d9518930bdc29c58ec746c535c86dc5797cd256
MD5 d5b5972b4e5f2df8f15b4e11e1b9cd65
BLAKE2b-256 f3f8b52ef21e441b4119eb485c3291cdbf880fafe85007c9013b2807706153ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b42c75c65d204593075e662b00261579ed5b552d27068998a209e5c5511eb999
MD5 86fd109b4186b5f0e6041755d7e97962
BLAKE2b-256 18e278dfb8abf6da074da4905f9e189c2294e107df27b0572b6617dec88122a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93185a667ba0c6d6770194811b287b4d52ea0825f60a69f727e6f0f086577db0
MD5 6af57cf06ecb6836e0f192a0afb4995f
BLAKE2b-256 3a6f8deecba2feafdc838002d50934364efe61662973f366d2fdfdd5357bee45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 849523765bb101d52450ecb0989300f05177ab2a8aac16db264c34b7996422d5
MD5 de43bec10e8eab495f0eb6af52cbf666
BLAKE2b-256 d0ea7f5413e627d438bce045158960eb0404ec7af8073ab33590ef16c6ff0ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f75f242fef38091416875f55ad0707f22cd39626b245f8dd6bc8100a52d76dd6
MD5 9e73be54c0b42497197d80fe294fdf3f
BLAKE2b-256 e013c10c5f93710999d5d16e2500f460cc1ed566df7bb1c7276278a3335967bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f528b59c99ffa06302d4316f49e4025c1f209d3673c49384161c0b6f434718b
MD5 c6e4f05a695420cf8b7a136e3e81394f
BLAKE2b-256 7a18d554bd8b8f914a783a6ca97cf2f0781a5a29d97be4bfb918ffd53fa4c30f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb157791ea8b222b84f01175269a3aea6d4fe9d17c2f75be837b18180a46d1ca
MD5 e08f10eba9ef3fe458a1e7fcd0cdcd78
BLAKE2b-256 98f11590860eb7c152e8e81251e06e8ed0b7174a0b0ccc3ddd5c05b87313137c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7b7577551646e1a01b70d7f083c3e5452b61ab73fe1548f138a92da289b9487
MD5 28d40f413d5dcad3d36448f584bbeb01
BLAKE2b-256 97bffee4d3c5fcfea9c5f5b696e9546c15d95ab816def0ecd84af850efcbe4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f95cd980ababb80c7e2963b6e2b46cf8bfff8ed3ed203ec851716e6faa00985
MD5 35e10a9eecc180dc540a297ede10a72a
BLAKE2b-256 21734423a2d74cc418a503be5f4d3375775678f2498b5b2a4a57217d4fc2cd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26e248ba129162cc793dc40f044d1e2cae9c991605edd773b72bd35516428344
MD5 3e0c6e3b1b8619d6165b2a912e355622
BLAKE2b-256 18641773a66fb4a0977adf3ccbe644836e0a5d69ff21fa39572be867643a0274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cccbfc903c166843634eeb5f5563f93e0e7aea2d6af07bab498f9b05348bbc0
MD5 f5a16b85f6fff343e4a1f7ac9569de89
BLAKE2b-256 dc67cca0986ba94101a7c959051ffa9faa5f98801aedcf417da03bedb3ead2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d530429aae9e249523c2f1c2ff7cf5f3f6a0de202dd000c1bd7d49c974150ea0
MD5 3c21d28bd31902666240bc57dac49f90
BLAKE2b-256 f38b6ec241550e268118d7bd62feb07540a47f62e94bb23194e8bdec384de3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 689acf312aba760631ab9487c3d2d03a6f12eabfd0260c081cf24e4722583459
MD5 c7fd361f5eb4d54264b8d5e1789f7f25
BLAKE2b-256 9ce23591bc41e04ddf3c7e6047a06c42a9012538923ef5c08454cd9507a1de91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f7e51256f064537382bcf18d127dd625732d556e7dc014fdd20c9d0fb16882
MD5 599937e84810773b75c4d823fad7ec5c
BLAKE2b-256 0664e94097db4003181ebf7eb8ab89e068e9368d91d80190acfd34bd462252e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e247f7c5e1f04dceb3af5f0f774b555e768fc7f225806b2e9183128ea6b2f44
MD5 37136bba4a959cfe435eff678b0e7973
BLAKE2b-256 1bacfb3ae93270af7ba22c7252a936e284725aefa2d6417e0dcc99e2a072d8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0fcfd8a56a25568f1cb33bf8b207adcc134b608d6c03425b354cc78e6bd12f9
MD5 7976bbb0d03ea19839122b8d9e5dfcd9
BLAKE2b-256 0b5835770ccfc333e0b5a0e5aff12b81f3b2b4a6828a0108786b23eef473833f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3021aaf8e5924aaf3008d0a72a881bf414fb31719101dd53b91554466a89509d
MD5 28ffbccbf690e4d0fff2864fd255538c
BLAKE2b-256 ef186b42d4dbf5d127ac68474b5e34c9e354cadcb224263840944937fbb54c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61c2cb5792656772d5dca368830d5d2ddbd97ae8d7c4afcbc706c746cb0694ee
MD5 1e49468d8040283dced5e960f345042b
BLAKE2b-256 cd576b70c4eb4c629f3673d85e9037c34671a10ed79a31401530bf19fa480130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9ff76fb29e98b21498d29ddcaefc9c772326e06d04a8ad89e109664b12dba35
MD5 083e8f353d24aba3ff5a53cdbd9f03a0
BLAKE2b-256 4fef439292c3fd63f47b54e17853786993b8be774f01d8c780bce2fd5daee1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbd219fd2ab1ba384386c3cb4b325a4ad349c8528e3a22da4a9980014dce4bd9
MD5 e9dd3ff086172d613a1beb8aed2fed31
BLAKE2b-256 96ed34b56a4a5e752f934c752d6d27c79547d1f366c6ac030c5fb150b2a2bde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f65ae6832a5cbbb5fe1b86e81e6fbe17885b92800a8bac00b0a0ee995f0d5d7a
MD5 26aecf6b0940b01a156f82cb746cbc84
BLAKE2b-256 7c61b87c9db340e52690b40e099199348467cc12dc171f3e8e8824ac74438e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6458b6c8cd0713abfc89b0e38cca9299d6539cfab00a76ac3d1f5d006ff83c3
MD5 a3ca8800d1aa976b75aeba3fe71c454a
BLAKE2b-256 9d417cf1f40c1b3d45b092863025ba3680e14680daf84ebefd7e28d19199402a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1138c4ec1bad8bbd96f5faae25e9acc106b880e94e10d1916a89b315e1e9f1d2
MD5 c7163315642fc82674b83ffb2ce4cb6f
BLAKE2b-256 6c82e6defc83ab7905baf8b3111eb8e7b76d9d46305d32747e6b93dfd34586b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 187e50175f7321416d477744f77a6ae349eb9fafd9edd39bd3b2d92fbeffa2e7
MD5 f9cef2e56fb60c32591cff25b0f2ce4e
BLAKE2b-256 2ce255a5e757535d414f86166e09ae063974e2d895b54db38a399c1b8666d6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19803754c00f9f7769fc9f5b4e3103c4b9371148931a87ea255338eed6b9cf2a
MD5 f49ed9f6755a9165367c26b4c9070061
BLAKE2b-256 94be08843eb51b271b764d9e0b9f03a7da49a2b9a84b4cd22135a2c59ff5497c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da9e5d593115387edbce297934bbec15a12a52d26d6d4f5c7a6de5f0a47dc7f6
MD5 71f78be5858c294eb98c9d5315c634dd
BLAKE2b-256 cf2db4fcacd00218926af72466cd5477468339ca0c1f40ea43ba3eb049e319f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 addcf5cb2ed67f37be407107162f367d7c670b8b6a11da0968eaee56e5d8fcd2
MD5 af6e598076826717e7892068043d2675
BLAKE2b-256 788772ed67237cef14c12a392cb8c2e7a8e01bdd5c74f8d0ab8b61fa430eaa80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00b4d4600161eb76f1921c0fd6457a716bd9e0b13dca53ac0ce96d789f8abdcc
MD5 946ec63138b03f9912bb50d57c42fa03
BLAKE2b-256 871874ae735c748fee746379c67674f629ce330129b677b1b14996242d68d1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e912a07851e59a47525f57b66565cef9f246c42df24959c1824e362179e7af0
MD5 359b2d1611cc7e0558906ccc8b87a5ff
BLAKE2b-256 576459f6085dc350455adcb9b8269797741c70705c882602b9c6501d2123ff72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f3e44627572e0f577b830fa7c0e51e883fbe0a86939715a737676716183f42a6
MD5 9740250152b40f07ebe575c67d1fa851
BLAKE2b-256 638cb4417fb0f2ab9ae71f93685453a472c449a92b0779e0b79a52ed2525e4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c87019037e5765b6774af8a22acdc6a3bf8bd2ee88732c21118f1085f89e2783
MD5 38923beaa25e9416243adb1bd4125b0f
BLAKE2b-256 5a43988128c14c52e46c31dca0a038c3b4805e4f8339bd1a538436c3dad5e323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27ed5c358e698aa199242696f5d10e4d1dff5ad5c24cb661bb0ba3d12f206f09
MD5 310c31d310ad2c5b4860a47a00171684
BLAKE2b-256 2333674449cd01d42c5faab04281a7d33b7b56bc616d32fc3d087d09eef6dbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29caf3a25d052c0a183860adf863afbe7e4dc5db1daa5df17551e29a82bea788
MD5 c11da29222335173ccd39d6e59048b5f
BLAKE2b-256 fc29efba253e1baf7be754c96d1da6a712f168738be0bbb5ee3f5c875ccc67fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acd883a2134b648f10eb87a9c6d01c801d476caedb05de09be4236e9f5202569
MD5 862b3f0a23c4cc8b563f6ac0e72c2f27
BLAKE2b-256 bbbdf844f940963dca5105d974aac21d12409d7e51fd9a88412e28928ce36d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a18e4bfab636f18cc2fe6fb33fcb62b26e0cfaf6f2cff18f6a677804a1123e3
MD5 d8381d20d8b31ac476cfba3a5afd149a
BLAKE2b-256 455ef63c567aba8a7bf769a1d337f4f8d87254e1818a768aea60092455c722a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8a64d407a304437e166589177c59972a1deffab12f9d7d5cadcf0162a67a657
MD5 4fb849a24a2974a9c4db6edc49c1de2d
BLAKE2b-256 70023f3b52d9d8980a539c1889ae1371ca36f0f446ff26b368f0e9536747f601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 971da85b0f9e6d73dd7e85b9ee4262dcc6dab92807abec6999ad88a6f0b24dd7
MD5 25d068d0e73d535296ee054e87d6be9c
BLAKE2b-256 26be1220123f6160a22f504ac03975a2a1000abb8cb9c3622caa79a575415a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 057905720e56e151233ba9ab38d4d0aa7aeead0f9105b1ce0c3fc8f589f6fb44
MD5 1ef98e15f86d83a0bfa1be8026ac5627
BLAKE2b-256 4928a1e1915f7d61b54f8e7c7b54cb8f031758f77ebf509d13d18b4de2c8445e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7857bcafeaf7cf73e7568a31e0a875eff4574d135f005f2a52cadb42d25442c
MD5 1d3a8fcff1dcef92db56f586180c0b3d
BLAKE2b-256 3bcd47cacfe3073b1a87953b8f2c800ac97f7573748c3123d70aaa16d5f07998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d868d86a03f628ab68a629677a8afb7a0bbd42986f27d3c99da3a584fee5a288
MD5 e9a7125d799fedc58ddc3585ca7e1c0f
BLAKE2b-256 cd8b278d74478f05e8a1076231ee769c1cd164ea00de0c9edd7836b4c83c126a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1218f46aa2fb693f671b8c1bb928962f42a95f43a7fe89acc6e4c9c7c6cab67d
MD5 ed088d5c44878529654212d0e9cd0f52
BLAKE2b-256 28250d0a9aac7625566766eec865b30d760f1403140a7f358a8d741731bc7359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc7936cf342fdc3dd9fbdf863aa7ac6286248a0fd72bf77031428b030fee40f0
MD5 5e19786a0fca5eb346b6fa98387cfd47
BLAKE2b-256 da95d42c73640f4e8e179f5dd14d59e51c12c95f453b5b753456c216536eba34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b3343f678373f15b02348d3477daea3edcbd6689eb6f245fb7773f42e375a2e
MD5 cf9439e98b6e0860db3cf95314f59209
BLAKE2b-256 6da479e7fed720c9938163cec3086b1c4fa85214bbeb84af55dbff39f198db40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a23f4af1412cfe38f6e1621e9adedd4b0a1638bd70f22cecf43bb5d3ffa7c13c
MD5 38f8de87ba73e5d5d3bc82271cfd80d3
BLAKE2b-256 dcadc124fefda0f3ae10a8970a20dc4da275f937eda898e3664bfca0f6183cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 107f701f46437b6dae4727dd1dbed0561c2f5d714151855929a8c8ab3011de12
MD5 f1ed8cbaa637002f187f1acf8477dbf1
BLAKE2b-256 aa42cea491f63761927898f6fb536f4e84256119af5e3333ff9f5a21a824356a

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