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

Uploaded Source

Built Distributions

mlconcepts-0.0.1a5-pp310-pypy310_pp73-win_amd64.whl (966.0 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a5-pp39-pypy39_pp73-win_amd64.whl (966.5 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a5-pp38-pypy38_pp73-win_amd64.whl (966.9 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a5-pp37-pypy37_pp73-win_amd64.whl (967.0 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

mlconcepts-0.0.1a5-cp312-cp312-win_amd64.whl (983.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

mlconcepts-0.0.1a5-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.1a5-cp310-cp310-win_amd64.whl (982.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlconcepts-0.0.1a5-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.1a5-cp39-cp39-win_amd64.whl (983.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlconcepts-0.0.1a5-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.1a5-cp38-cp38-win_amd64.whl (983.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a5-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.1a5-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.1a5-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.1a5.tar.gz.

File metadata

  • Download URL: mlconcepts-0.0.1a5.tar.gz
  • Upload date:
  • Size: 45.0 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.1a5.tar.gz
Algorithm Hash digest
SHA256 15e5d860cf543b14e7910217b6311c6dfa859acf406ba0b376d5598e9cfa9819
MD5 a22f3649d1478019243b5017d9ab7a0c
BLAKE2b-256 e906a9ad0bb42df23d92dad52fc02cd7ba4170ad3cbf7f8af77c0a2b2593ca65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b02e235b42354a3423020c462f322b676bae4a243bb567afe97e7ff6e8449e20
MD5 a39ba929505d06ce03d48c0572d4519c
BLAKE2b-256 317c86d4a9e7b664f3d18431b1771347f776338cce327719fb2a3e26709f44c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2a71eca71ae22deb03fb2047334fe5c12de19a7dd6a3cc7fe565720518e50f4
MD5 fd6d0f31323cd5b5c26e8fb4cfce46db
BLAKE2b-256 81d31f3c4bbc15d2596961add33803a42e5e91881904244775af4457f69beb96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8973988cf4d69ca1b927815604c2f287cc50b18818603f1ed85e7b03a16910a3
MD5 4238a68f9026adc5d52ae14296d6841f
BLAKE2b-256 b1753f6e95eab3055e74c9a69f7a018839311debee148a0d91638e881db542dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b282093e223ba9abf6f293a722167daa28657d8e38f7add56c0df24c549788e
MD5 2fbd970ba3bed5d4ebe426af8e6c99fe
BLAKE2b-256 4bc351f988bfeaf9be9d9edea7c053c83a1bf1f30ea5a6068add74fd7e53e710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ed2dc2c775b5bdf8f9fc27d42295e3f24e1cc84d8c69214d65659b03a2bc8f0
MD5 966fbf0c27b10f9c0304031b1d488a87
BLAKE2b-256 3f96ba3591e2054db1e2b6634c6d73a5f7d30cc5cb49efcc44e3465eceb85db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8348a29b53e7572d3e3e0a8bc76fbe99cc2f8620a61b9e925a753c31124ee627
MD5 334a783fe2be18f0a48deb6d78e9ad7c
BLAKE2b-256 ba74b52cebc4b20cdf3ffa024cc7cb9ade4d85d6f4cbd584f0b5b9809d304b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bce9c70422cb52afab83fba504cb0980620d1bd90906224403980205449ac684
MD5 39f14486812cda02fe64defe8f76df53
BLAKE2b-256 6bb3c740163c1a4ee0093a122082668b4965b365ed7425e743d7dc1617db915b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce8e03f99b444141e8e8b7d685d2f6b0d4bdb6ce574060e33884e9f155084a50
MD5 8caac8b59d55cbf8713ee20aad1e1eac
BLAKE2b-256 3aad76f79729a69304755857341d16680a4f7db32f0294f884c5f235bb51cd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0c3ae5c7db7737cb05485dd5c9aa7fa293cc7e7377313136fb53adf67418031
MD5 bab4ef48123488a9449acdfffbc2b3e4
BLAKE2b-256 d1de6f8c6e2ade4a0ec8eaeb07413f23a690b375c5dac477b0c62fb63c02377a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fc9ef3477f7730a66e3335607101c9619eeb7c3c74f4ccf3b937e642d20faf4
MD5 728f83d20d52e890d759ee2c2bbc639d
BLAKE2b-256 2bbecc218eed07ab90dafa28499bda802dd87ff84c8891a9c450c3793fc14427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 227d7aa0b7e6317f6c24c59bc9d84b4845652a43a9c8d4628bdea99cbeba342a
MD5 693bf4f557a158bab9c9dbef8784a152
BLAKE2b-256 59a346f20ad5b7083379d46665851b10ea861b67c1c9d1e29ddb91b3d3be7f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d143b1ebd12969af81231fe790e0eab75efade2c8b8eca54e06c8d8e79d2a101
MD5 130138811649e2122ea01257d981018d
BLAKE2b-256 fe25ff185b69082f7179392b22346e3063671629448185182deafb7a4ed8b402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 766688520c65d26fdeef7f7d5daaa626304ad323f39eca3954f4d4e0ad4a3d19
MD5 36390bdd821564c9094dd5c68577c490
BLAKE2b-256 f9eae16e90aa07eb9215e363ce6795f710494e7d5dfdbdbcd460c76552369d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6e914c007b02865270f7e540f79af706b66d40024043511f3ade9af05af926f
MD5 571238e689a277ffe7d5db9ff0f230ec
BLAKE2b-256 824c5fe6a64eb71d7a3aca6f1735ca18ebebbae691795ea28f30cf2aa359e598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef554ab1730ea0a0ba3417477cfd44db537c9ca8d7404fd30c6d7cce86c42845
MD5 0df311ddf0cded135e700fd72e4e9e77
BLAKE2b-256 006866eb0f1fede1a38483cc6f5641a075a449a90684edec4da24f4a9dca3833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1878b2435e01813eefe9e58b284cf13e34b0be09a1c6772ed722becc832af11b
MD5 51e705fffe7f939ee1de5bfbabfbfaf9
BLAKE2b-256 bbec2bfaf57217e7035088a16993cb34f2237da04b0b844a153924d62e1e49f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1788c405c2ad5d7df5843965d14f9b1f6672c04a4ade6e7f6fa726a7c20e714f
MD5 bc6db39e125c4a2279dc312976c85adb
BLAKE2b-256 3c36191e74ecfb2275c43fe6407fdea8dfe24206c447a6a86f299bff47447a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01138ee05bf87809c17e4bee583b1dd27ed9077e1a348bf8b83f055bf4543234
MD5 6f659f32a952bb1f67676cbddde06654
BLAKE2b-256 57ca20b28719868e2b8303a87409c953653dfdcaef1e96780bfeacb6f0e8b9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58032f73ea79a74feada3429bfa920f5d5147c4899b4cb2c473bafc8f6bf45ee
MD5 fc1bf926dcb81e6bf396ff060728779c
BLAKE2b-256 6829cf173cf9ecd49889536dd272c637584a9b500f3268438beb7618cdfd2be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa5656ad1d8305d406a323ee5341e82e35d7862b83e1755d54c2e954f3fe2a77
MD5 84d60fcef46ad72b4d2bf57495415ffa
BLAKE2b-256 49aaa953ac42daeff0d92004172eb89bfe604fe06ddf14953b42cc47a3d1714a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cd191ab6a2d72c1ea70936292594d4ea07d8e64fcac007576cf9b7cf930ecf9
MD5 c7fd6586498a5c78880059bf44179f15
BLAKE2b-256 41c3421d5cd21d5565121b5517ee0d516e57fcac20befdefcd964d01da1ec16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7696e0f3dfffd70977b40c4363d2c6a47eafad377bc548da74e65be378782d8a
MD5 9a003c8f8cd9cc95b3456b81dc43b677
BLAKE2b-256 365615f4ac1fa3eab9ab9e4de4a06e37d3c0579603d207e0557d6750c8fd6fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65ccbd23cd505893ddbae2ee3492a4125d7d2f1a3d3ada7223e8e3220a4f417c
MD5 8bd8bd8a6141363b58c32ca6e3c7e4a2
BLAKE2b-256 b79b04e4ceb04f9432060c989abdfcc9a813830eed34df634a2876cedf7780f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6377a74528f2d88f35d33f9e9093e3fe937e7d46d36131c4ecb8bb2586b19999
MD5 c1e779601595272298b2d25cce271b50
BLAKE2b-256 a58fdf9ded5d55bea63455c42ae56f2619c4bc9295ba26524ee9d04563ac19d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0103c8e7da324cc511d0cac2ad3c8753856dc87c9030359d959fdc4be40e997d
MD5 0d7135b8c2fe6c6947769fab86bd88cc
BLAKE2b-256 45af36434a3894cd7aff470c42e2973a122f6a331e6b98068186953c2faeb65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e145b07d36412fc6340985aec615dee998ca413cd8c1dd6a703aa576f21626c
MD5 e3d89d6c8c1a95dd5f0858043c283f96
BLAKE2b-256 888dea1fb779fdfe48d1720b3ffe0b205e09d7ccac3ff2f6ed522a1b5b133bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fb1645f11e320e594a17c5e676150087ee94eeceb0feae9dcaefce5f59898237
MD5 1fa69eff266d9172e54e84c723ec385d
BLAKE2b-256 69d6d8ed67bf5339a79401042901880039ea9de6976d2fa32b6186585c00b6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca85d48d5361931e3ea9c46af7caa2e9387fe47fe386afec88c773b7fcd01443
MD5 9ef02b3e3eccb1c98e89550670673ff1
BLAKE2b-256 06064a58aef23f63ec66a4b1de1d1f12c9f0aed755308e5f79b2decb6c15dd39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc68fa873e2ab2e49e8a8657d4524fde72afd35f9284304d8abf5b861d88f1da
MD5 79b95b28688d070497d3c92f02a624f1
BLAKE2b-256 e3e8f6044182e8165b9d9c4de3dda1e83a751977778172e182b9f4942c2537b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6083844b2c8501923542a493c5edd0970666a982e8bda0683e2c085346ab4ef
MD5 d9aa805792104b8c09f33ae0d8183bb9
BLAKE2b-256 9d34bbc9e0e80163569a3b6a10f58d979faf3ede840734e059be2e6c0ea3f37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79b459000f4591ff00d6b8bf1130d17c8c676bfbefd2344a7e7e915dafdd8e34
MD5 a356e31409cb8575cb4e62ceb96d5d40
BLAKE2b-256 e577501d09438e2752ec8673debfdb5c30a5e3e3274da11b13b384164682596b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edfc87eed543a79fc068d5f713f8b6760bae9951553b91a74b9fdc45ad89f475
MD5 2623f4f30cbfdcfd6dc4a5d1a724128f
BLAKE2b-256 8c6fa063c455c27764a49410c79df562f8b82c109b2fdde3c3f51c14ab50f374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81ae67f21c48aa45a36e87ae449ad8fa69cff0ddce11c51c7ef458e302d1854e
MD5 594a31e81d9bd65d515c0263f6c60137
BLAKE2b-256 2450628cc295705e008abda1a744bcc132baf081103632bf5243de4132186d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e8153499164ada705c1d5f5f208652afe0b3588accf5f77dd76763cd8e42231
MD5 e02bf5b8b017a3eb0bf11be342ec2079
BLAKE2b-256 fee4a73787eedc0acde8b15c4ea0d5cf44c158c7f2b10e35483cf88e5b85bb3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a43cae44f30cca6e44009df9b3a104ffb0fdc8afdb21c4ce4b4c2b3893c35bfd
MD5 7acffd3060218d2b5e24f88f62b6720d
BLAKE2b-256 0453957abba29c450bbc54feb1842cb110960f7e5cab5da3e71d16e3fe48dc3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f5fdaa45d540e9f5bfc151edefc064c63e90f7c2315bb3cae97d190620ab83c
MD5 e8cf3e7811543d0aff3acca6196c3445
BLAKE2b-256 894fcc1b56f0d522bfd2c74293e9a68586e2db941d9875d6591f1f49ef13d6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93a521938846b7e3bbd517271bb7ff35dff761581ba9cf42bf312fc7430af0e8
MD5 781e786814b1fd1698303afa03d4fc11
BLAKE2b-256 351b5d8abcbff2396e95ed0bade49fa43fc9911f618e6eaca5d8401123c03015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb482e63a5d8f2fe997f9206834535f425f0f56a4864ccfc5e915e5f84bb4e2f
MD5 0be1c6f16d4a5e508db23c40701e1982
BLAKE2b-256 5bff8577254317fe8744803028ad1eec5e136be5b373d393e0860e0d2afa714a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae598dbe6469c05c3c78612014c79165e8bb761fccf147b777c731608497eced
MD5 6f3a02fe449b0648ca0fc755478c788a
BLAKE2b-256 c6867f2c6f393cabdb4cf05b0232f991fbd89eadd10f2ee43a16bc747496b71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92f04e4e4e1392effa43142f792966eae00e1c3bbef15a59f53adfb68c93f457
MD5 33798cbf57dd47ec7e1116fb57702054
BLAKE2b-256 4281f83e8affd5f3bb172f2f02791b450fc6d81d26570e3c4a54fa186500c849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 34b31e36716ae645bed2fc6aa4ec33e350b865220197b2347052f78f02b6f0a0
MD5 4f29f088ced3540a71d22653cbc9b222
BLAKE2b-256 e576d7e522167389904675905292cdbc7704f7079abfaaba17af66e089c7f1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87dbc5b651aa9991585c6079681067d89b27de81d9073ac843e90525480afb6a
MD5 8c14a0902fe6f55f6a32c9db4d77c6e9
BLAKE2b-256 1930fb24d83e8fbd508c52b376d6cdd7b72b622adaa1a461b11948bbb27a11e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4e5da3c23a424c2d2670bfddc73e30d2d6f8951d8600d30f65a2905790db823
MD5 037d04be2af70624d1b678e0dc2f2e71
BLAKE2b-256 ae678d3e8a845b498524c5f865f390bbc24dc0af282b8aeda2b80667cb78e3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82a6d80e7f6f50a50916dd71218926bbee6e700f0f2010e06f6fb1262ee3c2df
MD5 800bc279864195cf1f29c394dea0dd16
BLAKE2b-256 efb40fc6f8bfa8959bbd4625bebc668a434fd8d1987c6126e37ea68b5376a1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e3833bcf6fba02c3294b5f61f8af30d8ca70a2294caf15427ada5ddee8c9d41
MD5 19be5e0595603012f715af32cde16ea1
BLAKE2b-256 20ccd04ae4d463615ab3b08c6a41a7e3f667dbe9d1344138dbe6329aaeeb93be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 322a1b3bc59eae16ba733a7e930417177c39cd1dca0983fae720eb6b5c564eff
MD5 bf9369ca942d5002fd83b90b8337e84c
BLAKE2b-256 12b00df1edb6cc71b6ea4501c96d57b8f4c3fc2c28b3e783ca760b82d42e6610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af4702c487c84e7a48f4593b029ce593e8d769ff8e14b7f904f0a4798ae96d9a
MD5 60ed61226882917db9c2e7ff3ec19c4d
BLAKE2b-256 af3e2e7ba75c51d31926906329de93b16a2fe31cee84ae62e7e402b808f57dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d541f6d0f2bf6bec2afd2c6f28026a4b6f2ec2eaa00d42e18a929fea12caefe0
MD5 13b3406d9ae9e2945b9a6298008f877e
BLAKE2b-256 d99acd5d42013ae071dd05c6379a6186e3e2d35fe9e2deb95272801f98d0aecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53ddf60ee8700952a313ecb60e1b9231a56970b59fbad36ded6dbb269b6b1a4a
MD5 7408258b189b7e88004413493b747bb4
BLAKE2b-256 98d54fe989db2d061dab0771d8f46a879764dfda54f1eda1487e1edf44854218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99174db2951fbb3c2661039ecfdf0800c7b8e22f5373cc12399746d911cff756
MD5 c93328871066dd4e9ad9afe298f0d956
BLAKE2b-256 2a9514653b3ce862fb0ff7e03378b9e1ae99db29d82d8768ebdb15694f1ec893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b268b5549b399c46ff4eea0c924f133ca9b510c3bf791434d694d71e388fa06
MD5 be2fd91942025df56d4bdd8bc5bd3956
BLAKE2b-256 8f7051c93a5db8f4065889cca215be966ed4b5ee1886c08633a683a54c36dfd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53cafe478ceb6693d6f7c0938343500aed0361b5a4c32b8b8352606f1af0881d
MD5 729511afca4a3c30f97b43ec61eb18ae
BLAKE2b-256 88ef9881b2bd15f5015c2978c447ec627ed7d60a51d092f4a2708aa60761d831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ad2b717d53bba5fa2ce79e2eb34d9f546443e926397c1f488280a08e62d9d59
MD5 7ef336077c0accb0a1cb087e6186ab31
BLAKE2b-256 72aa4da564e6d46e9be5be3c7e8ce8a0a8d80efbbc406d0476a905b0912913fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76c0cc6dc993ae3605c95b32f16b2290067d4b2dbe62d17277ede832742beb74
MD5 55ace8275bfc8d7832cac60410db274c
BLAKE2b-256 b2cae177aafb309a21406de78ebfc81feacdb033859a2fe4d1c496f4f515e346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4cae73cf45426b3a99e0f5e9298f16f1da606f6795993c5b48d355dd0c32473
MD5 0cbe44819d1e55cd0578d3d47c53e2b1
BLAKE2b-256 fde4175236d3706aa9d05c9b63b1a91654016c3dc9634e792ca74d551e329152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0919bb14396a2bcd47d75a830895e3458b1b1303c4e51e941a16dbfd3a27127a
MD5 368558423314a38738cdeb28dece2513
BLAKE2b-256 3ed1a0a84d52e2a3bf4aa4f4c640de3f09e9b6761d118916a6f80b3b89b32aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd76999fce6ccf97dd8dc7e312684f7e0cf1f70601b7a634687b016cf757b99c
MD5 69f10ad064b756fea5a5669c8ada0753
BLAKE2b-256 939ccf27609c6722da348468d4ceb933bc0210b25570c164f1d2c67d1257720a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59d068cc407745d6060efc953979066fb858b74ff3c285db949c3bd126ecc385
MD5 75c34c3e166dd6a4a2793345ac7249cc
BLAKE2b-256 b7b5bf2fa9b8a197d23408e2f8edba9bf119f63b68caea85f5b1ed99590368ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1f398abe3b95b7f13af799fe308f9684beab528fe75312eb39025c74f3d3956
MD5 4af9228f3edd501f87c7e3de17ea132f
BLAKE2b-256 dc2c64b5188b296182837956a7010497047462aacc58d449202e1bd80c980b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 871372837fa0fcd38f6833d45c0b9ab5029c3a102fb9844aac785d6a1575a378
MD5 c5089bc2a147902d0b16d633ef5c4508
BLAKE2b-256 1d6ef2f46174e24a8cbd987ca760c2f25e2f6158c4589ffce88f337ab3ba9d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66340b201484a8a3565540c5ef522dae2a7b2f78b356befb41b56900d39fc987
MD5 ba346dc6f079c4c64d32a8622cec039a
BLAKE2b-256 c02da8f91a80eff0b02fbd78efcf54bb9f040ba1d3fc6ac221212dfff8b4f60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5734338e6cfcf95dc736f164788ea3c649655c05796aec4fa76e59aa21e630d
MD5 2731a668db5902c581b32afa74ce83a4
BLAKE2b-256 450506f5c62ae8c330ad38248aafc9285c2871405ffc30faf25816144011e8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 463ce45478527f171c65d2899b0a77bddef9f451596c130c5c109d52599e3b39
MD5 38d8008c0139f630976faead92e7dbcc
BLAKE2b-256 d3f4362abdb9bc6ad0d15e6b6a3df9ce86cf23337a2b0f181ba15d5a5f179576

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