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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mlconcepts-0.0.1a2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

mlconcepts-0.0.1a2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.5 kB view details)

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

mlconcepts-0.0.1a2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (268.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

mlconcepts-0.0.1a2-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.1a2-cp36-cp36m-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a2.tar.gz
  • Upload date:
  • Size: 44.7 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.1a2.tar.gz
Algorithm Hash digest
SHA256 21ff983acd170286d299affab2ccef31f3c5e2b8e8007766b54303e2c4144d64
MD5 0c4317e1962ded259782a49888ec7163
BLAKE2b-256 36210305854393ad80cd0ca7a0279fec6375628c633e80a4bdf987c765f975a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec05f5ea0939444b65f8231fa4465909f953c7f1a91a1505d3a120f7ff72eb4c
MD5 e279289a1278be5971176ced4a468cb3
BLAKE2b-256 0edade602a1f153da1384e766168fe07f5efbfb802b0859b83dc000147df8407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e616967bbfa4a26d3419204c5a86dbe5b5c68c32f275822850d163e215c2d19
MD5 a51dc87295e5e9b7fafdc2b492e06798
BLAKE2b-256 01109e37d82ba58a148ac35e3babd694cb54c65eb82ce310a6ed9b1c71e9e8e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80d88de037ffa65ae0bfcc7637ea782be0b74cec49d54a0fb1359e314b428100
MD5 f2269072aa96bb388d3165541866b7ef
BLAKE2b-256 703f54701495b9b085e6a44c0ca160e9bc232c2657807b5ab272803b7ce2043a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f69316445cfdb607ebdee67ea157071fb249be221767b0ff955ef7ec8db55cd6
MD5 9f411199e59ffd84f7f7c18d4c1db049
BLAKE2b-256 4fef61a4160858b7e3be10d7d47db2a9f9856a01166db215ad4d93139d0b9f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42dde65cc96bcc907921d7af888a576629cd17ff0d274061b95ab9858c7028cf
MD5 dc34c05dd1b2ef23a5338f1f6c81b5fd
BLAKE2b-256 bd6566481d5e7d9a05867f3100d30bf50893424e439842b1489bb7adf51a295c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4997cb4b1be71491e584e09dae2223391b0e305dee1389f9fe1340747bc45485
MD5 ddcb11e369262d4ab9081f1f2a233b54
BLAKE2b-256 3f4ea3b45ff4452c1db6b66470feb0aa24afb657cbcfa55fe886eddab67c10b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4e3b88b324a0e803bce7df810217d35c0f418106ab543c78bf25cb05693d763
MD5 f665be2cde772dbf025d9e958a597de6
BLAKE2b-256 345c58c3e1a47fc4a4fd7114117b3a3dff25929810fa6c5d083930a74ab6f659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c16900eca47a942db4bfe4247e35b8cfed1e69a7c8b2698c25f3cdf4208fabd
MD5 fe0d8b5b94e2fde255b549fe246f2fef
BLAKE2b-256 73edf1f34567a7bbfbb854d50d9d94c875e426e0d4f1757a7de43d28892a54c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb0805601b25d03056884745e8101f5a70c5bb65adb6bdfe57f5ed8eefa18b93
MD5 fc868efd65d05453eadcf68b7501d362
BLAKE2b-256 b45b9c106c4eea9f53b6b9a3dbf5457f2e43345d50466db7e31adac5eaaac567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ad6bc7872a06424fb98cdfc60f82c3acd167463e18f569f53ab0a8581720a26
MD5 8f16c08c85367fabc3df3cf543dd663b
BLAKE2b-256 c437571325eb3551dfb445a8d1d6f8900a571bbce9ad6daa0bf61c37abc46711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d20c0b32721f240edaef39f8eacb0ec88a0055d6a575bcbea658dfb1658cce9d
MD5 b81c5ec3afc64c3895aa578da89ca258
BLAKE2b-256 e8a57cf880b5744b06ec944cba818f052f2deb8def64642ec1dd01d22c66f610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9f8c1ec237fbf125c474d5e3b8d9b12d29e5a882624b5b2ae97f1df392616cb
MD5 6f2f1d48c681959d96d054e4128c1300
BLAKE2b-256 b828a7af17ef29ebcb520e6d59de042a75ff48c7a8f1bf505f1dea1e68a42b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2251f5dacc536a92bc8076174bfc5d2f00c8f988e7329667664956215a15225
MD5 bcaecf8d2558e43dfb47aca7722c2283
BLAKE2b-256 76e8aa0c50e9f4bc86fef889806465a00ee1c307728d24fb1c70ec6e7867e66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8ceac67107b15af4e0dfdefc095ca80523f771d0588d953e493fb49253f82f3
MD5 51e635f963d6420e95035efc91474903
BLAKE2b-256 40fc1fb405b40b7c3aa3d7da43c5293cf3bf5c17743a6d0245a0a304a9c9f9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8224239039421531bb6e6c27ee974ed1f087704a2a601ad5166b2dd31b493d7f
MD5 43eafcd2375edb270c29447846ce0a25
BLAKE2b-256 3502fb8cfe5c0c8138ceed1e4608598a34358fd8e174cfdbae098fae5db03f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d3246e3f10aa6552c66308f3fc53319bfbb792840344546d6bf3248ae93815b
MD5 1d099ca417f28c8ec7c7fa114748d944
BLAKE2b-256 d747f0f75506deeed767a513b020a2e9ce04634b4afd62cbad779e0de2bc391a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c24e8ad07dae562014a19d66a90c0a67c50c9e2d3d247074820913b38f84bde2
MD5 529ecdf41aff526cc9f6f3496821b0fe
BLAKE2b-256 7717722c3e6475510d0e04f882127d029c7c4d44f1664a33495223f9b5172819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0d3e70564c9f9dea23c88d681b2241e88228a904f8e983549cb1c56350b4234
MD5 1bf556edcb389dd9e838a78f81709711
BLAKE2b-256 df6fbdfb64b4e53bd1cd2a326569c25d169542794d7e6ae6bb92ddb1be259fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39755e3cb23d8bbdcfeb2bed69aeab31c49a256e35e9191d9d4149acc3fae029
MD5 afbdb3cbe21a44e6145b7f11cb463ac2
BLAKE2b-256 b0cacad0a988fa800b04263d881337af721888b07589041456a47daad21859d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8ee21f5dcde071452d9554d03596770c23945ccfa73a0c73a7a612e63e6bb51b
MD5 a54b263abf44aa366eb29c4f43b10bf2
BLAKE2b-256 9775daab127b98a22f67377a583dd5585c9f02f8f06c3a746538265359eaf401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5128586994489ff0f8d444ae050ca5591ec2f6119d03aa16be6c07e97ca438ff
MD5 030bfc56bcf009530ab3112644a4f23a
BLAKE2b-256 5d282a73473e14330e06e0cb6140c4f58c790c9e6b6692bc0d2a64d55e9683cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcec9a1e35d777a36c4260d0d741167d235389584a8e6d74ffc452fa9d648154
MD5 a7e7a43f52fd4302a75cbf46780b6d06
BLAKE2b-256 1fcec62a66bebec1af3f9807e9c153db9223b206c9f98afcad96277bda8cc566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f835c566434ba7b7154c8faceb6309ea9e6296fc1a784b903d52322cbb59cbeb
MD5 19255a251ed59da9965cd0cfd88a1735
BLAKE2b-256 2005737c70b745f02e099d543955b342b97492b4b908c30069e03c61f171c007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31ed9181c0142f81286f1817c6fc0897d986d5e57447bfa89bf8583b0eccebb6
MD5 50e59aaa96bb79ef95d312696e420bb1
BLAKE2b-256 9fe68d984b7d1d025b3cab0f50f9d8fc24f3f9a148f65b79158f2ae94db79d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1d2101013b2a821cf03c73663597ab5ad7fb2527ba52cd4abfb080cba673952
MD5 b9c178bf692b11d0a907bacc491b5c60
BLAKE2b-256 27c0d397cdc78d539a281424f3a9b956d16e5580be37dbc26835dc4cb99d4851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded247681ca9432ffa0a4380291eed937622bced794326199147c1e1e0a98446
MD5 412f1cfbfc572bc1462f44f85a905d18
BLAKE2b-256 f48b55cef9603b8afe2e63a7d1f934c421d61024b1d2675491d8236afc85e760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 111c28066abfd272eb9ed9d36b077f7cf283e934cc1fb46becc57c8b58b552b7
MD5 263745c503f3f35defee80061166515c
BLAKE2b-256 2506e331722a2f766eb1ac5742eb763e5c4b8fcec7f984109819a44f3e74e0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b01860d6f62264227667457857001405e2d297c52cb5de437e30fef297896c1
MD5 65c5aaa9dc1e2423f809bb531dbe6587
BLAKE2b-256 eb153bd71023eb08767dc2b1ca4ec475c90e7f70ed9787e42bfb7b0e1a46fbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fafa7c64c649d336d77270276361f0eccc3764113c10661576bcf6693210006c
MD5 8f595795e5ca0fff1b454dfa0829701e
BLAKE2b-256 5aadbacca80c5972eb09f6a244049f5955fbd7ee2f2d4020b0be8e1eab97f63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bb6e68bbe3b79415324459f2d0bc1c586f56209889d294fd81179d7574f2545
MD5 4680153837bf3f4252f214ab3d3cac71
BLAKE2b-256 d719d3619b47883eb7c0d369c9e7119fa4f274aa92b9328cf3b5fb310bd4bd5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ea9685eadd50a462f1326c2f0907d8a0fa339ed6a33f76a6aac22276322a8e9
MD5 786f89117092d5bf1ee1a0777021c5a5
BLAKE2b-256 002caae888ec783450a8d624ca0cc63c43c69924b92471ede836915ee5f8546a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45d71796789486d469c88f63957484579b0cdf12ebfbadbd79fc3f79c9fbd176
MD5 f80e6d3fc3fb75a57fbd05faba7f8b44
BLAKE2b-256 94e6810d245e72e7d9bc8e05e3a100c487ca21e27ea9a9afc068549940d0d443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8defac9d6d208d8cb4c33718140da1f8c2ba5c0e473ed935e582d65f826f91f
MD5 cd7d47b18b13eb39fd893086b622d18f
BLAKE2b-256 614345592eab3016e64cd07927e91d5fc995dd936bbfa73c031f27a1e5df121f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9c6c09e4da7f23aa938dd88736f60b86de0b8881b93f4c171abe3381de85457
MD5 5ceff76294046f8397a4277712a9cece
BLAKE2b-256 74e90d696181bc28f66f3c530a59a0aef4e5a96d35588832e03ad7356da88da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6761706939b5d4392dfbbc02e3daeef73192f7b9d267db339d7f8368168ba897
MD5 1fdac306fbd5f1ebeebb20e605248656
BLAKE2b-256 54a0efc70549f4e244d309eb3af83647bb0df49dbd749b65f7a444d5407bd4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f79d9e3bbc4bfed6f396c388e9ca600a1a6b5fd0afccb7533af0a741adebd22
MD5 14d919af1dec9ae6dc618dd6161bad6c
BLAKE2b-256 1f682f167cfbcc0c5574ed2694ad3519e28d283d5d5e8247901da12825067efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ce4d19317f266acb392e48ae9964bb9e3c02e1d0791209f97c0ef1ad3fb2c50
MD5 1767829c2cc17566a17c8ea98b6245d3
BLAKE2b-256 0b58857c8a717da688381c026cd59493fc9b58ca8873cf1088b52904bd357e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53bfbae722faf75d3b53869bd2b14456b410de802bb694d5981098c1359c24a8
MD5 131e9d811589401816b77d39be7aa7f6
BLAKE2b-256 f3c65fb4451321094b0f1b58c9bfdac6ec2d625e8e7c2848d8349a523015cdb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56faf663b292072027dc0b9799d93b944ed6b3f22f63459fb5aee017efe42da5
MD5 0d8214499a6d71026cc0f514b9123178
BLAKE2b-256 13f233e6bd25b40f32ec6fb3545b27d85a2d7ea5e9ff687eee1a610637b025f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77339ebc3fde68f103d6aa6b675486ae8b90f0c6e9c8c2958dccf282163f4efc
MD5 b3e7ed106cfe0f24bbd0cef752385002
BLAKE2b-256 50ecaaaf46ad36848c6073d1b792407c1264470f3eea295e4af4151841ff4dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c78bb68095943324a4b6017f6237ef4a7f746474c390e2249be78de5f84a47a7
MD5 d671df9dabef2bb5d3e860dc85585963
BLAKE2b-256 33ac83ee36185b5072434172904ea5f89432ab01ebb242476204887fb58944d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29bc39555b2f19c2b92bf1f00ec2a46f5cc4db6aad19839ff30040ff77b6d19f
MD5 0b643025e8130a55620dfbc74b030947
BLAKE2b-256 4350b92d829f28ac072d840d844bf3e9d9f082b1d74274c16645b8c4f7f247a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bc66176c3b2c4f06c47a60b5add30e1449be825b5c26ce489ca45bc32eff7e8
MD5 089b443c6a7fd3b9f276ed117378a457
BLAKE2b-256 2e7cd85b8af5cbde4c7ccf47ecf7744446ca149059b0c3915d7dee94d661b55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a909efaae756bf87f0dfc3fc36488cec6077814765dc867c0d796aa7f2a6bb74
MD5 fc89c5eade7b8776448b23d62adc5394
BLAKE2b-256 5cbc8008be2c0d21a9939c98b48f3f2cfe3636bc351d9c1ac0758d3202d57325

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a2-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.1a2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a025d907d2a612fa67319d60171d4a3136f4d0adb042c5de717888f3ce2c577
MD5 7ba0c43e59de58018818c6df63cc970f
BLAKE2b-256 c0b03b9e73700dab5043fa7e8b90e1cea971b0093f6999f1b6cf0bc0b8a2fe13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e5e1db88c7b6d235088767c2ccc6ee7e58ea68b851f1b8f7d44cef4e12957b6
MD5 e747e1f9844b3435f76fe086ab0612ad
BLAKE2b-256 c7b8ab7ec073c274e82b2c9a83c0a329e9a2676e9b36c9adfe4692c4f9d9cbb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 659bfd903244108f7dafa71d5a86a945493d7105f3134aa8ce9e6f6498439a45
MD5 276d5710d05e104fe6c651e21a969ced
BLAKE2b-256 71e96645ac3a09e8347249a4b4f05e79fca4803d9874c8e87db36142e900d5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e39408d4be63a7d1b2c1407718be3f94037a948e037aa4f10d1f2554a07c5bc6
MD5 8175931802334d0979af4d3685a22ed0
BLAKE2b-256 ea479caa5c41b0c083959cbf0ebf84659fadca9be67803d6ecbf5ba640838447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5f5c27661ea0f5ce4b8115de94440d336ccd78ceeae1c35c019ff99e7eb2681
MD5 b1ec776113ba878217ab7d3120e8eee6
BLAKE2b-256 6a509eaf3885467dec718efbd4d64eebae3c844df9f22fef16c8d8df52656cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b39e62fb43deec8ad5bbaaf752580ee757b8df565a91a8109c43172009af97a
MD5 f313bf55ce3f20ef4d00949cb1bd885b
BLAKE2b-256 08c235642a043a974c2661d1e82f02b04e8dec400b98d49914a444cb968139e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c53e5946e7c868123aac5454eeb6e887784f9a2102f702bbc8d6a09352848917
MD5 e829ddc664636ae9d2f094b77f0b34a1
BLAKE2b-256 c85fd549d0f081c28958bef0bf3889870d79d02038a4d283802f4d3d976d592c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf6426943a657e699c3faea865c97f616fa2433ae5341a6d82951ad9cd1788d1
MD5 fc2de2483f7a4a67a4ea386e4998367a
BLAKE2b-256 f66be3846592455d3c7f4851765d88f0d2e73d272898865de09e63ddd42efc03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a2-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.1a2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4f87cfb6525cf129156d1b69322c1856182dfdd16db7b306425f0e44c36fc5b8
MD5 c6dd914e5fbf26176c573c4c02cfeb6c
BLAKE2b-256 42ce240557204492e59a51755ad8c0d0dda9a8c0cdc6d4a560e02d91f1d7a28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b6d68e1c3ee4cb07d75895accdaf81771af367b0e0e9fd35397db8b691858c8
MD5 02be3ee98854bfb455e660d722a5b9f4
BLAKE2b-256 59cb62aaf32bf54aa012b7e3d256d1de29608005ebf6c116ebc400bc60b9de82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56a8da1ce25dab159d2f1a001d2aa55362bb7dc060fdde5f84499294dcaada1f
MD5 ba6b7d8eedf06307ee584db88ea7be6f
BLAKE2b-256 af7ae547871a818bc1cf72535e5433405ddf0eab59283905ec634a3843ca4306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cd0d49537e5ee557c975ea8de99d158abce2094c8a67ee8e85fde8954024735
MD5 b1a6781186e6c874ed5945bfdf15b132
BLAKE2b-256 687b1e708e8e1481938cbdb72e69101382e20d698d1cc40c038bc39b46b9423b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e76e2e5132ee33bbc37c18b27e799dd6cfbd529cbcdce332480b950e66ad28e0
MD5 529de4ef29082d5da36a1ddf0116a2d8
BLAKE2b-256 3acd69903474853d62291d5c15fa67f2d3de985f6257a7e9cc915a8d10dc0c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 28a14b686046d618c6d6f3a044e0cf4f70435cf495b5e6282380f5847ecc7f3b
MD5 c22b08393a7bb376adfbdb678f2aefc9
BLAKE2b-256 e8e3afe171bff72efdfb8e74925a7fb96e3f3fdd53fb8291e90f2782050d235d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a2-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.1a2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2f759c06ce9a671149adfeb445f42e5418ec379ec160057690603dd7d949c4b4
MD5 88c4f4e72d123b288ba1e04ed5234685
BLAKE2b-256 4e845b88ca2d574b1f6427c5fad4699444243aae8d0b178eb767d1794e6bbf8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 324d6f87a2e412f59f8ba4ca25d79e1e59f611d1fdf18b9e9515f5ee7cb1ae5a
MD5 7893c68fde5ef3b115848a2639c1c042
BLAKE2b-256 0ee0ffc179406c0dc81208fbd4bc9f9926511d6d9934c0c9fd87a275cdbd8baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 890933badafce9c01a7a819a4e16d12e136ff9e2c92b34b483ee14fcd1b7ef5c
MD5 0bc493b8225267ed8179f4d21d1ba027
BLAKE2b-256 eacaa2d02e9b857739ecd598a723262668413fea4c42bc13c7d10fd2c24e9a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3295bf2d31e9681dc53f9ad90c758faaa6c855be7e491ed548c1fc968ec6d4
MD5 96bd59261cfb6dc78b772eadc014f537
BLAKE2b-256 23482c06ead1b06db2b50152e22b1f70e48211d6b101a668ced13e0e8c396799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d7710c53eeadeb9105f86062fbd84de3a8abc24a82bece6a2591dac28d12d11
MD5 dde224d32a81a9127ef30d3c2211589f
BLAKE2b-256 967579c7775f19ce053bdccbc2cd352c676b895ab7d38702b4996a9e0906dda2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44f47f7dd94b95daa35f491e4c02309a4562c3d628e5331ccc5938145a9e56f3
MD5 b56abb374fb49d6b228cffccf071c8ae
BLAKE2b-256 ba8afc5961dd0695a802324e87783950d9a093c37be2b4cc70850fae9de246cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cf2e19a3b6e451fc55e9ab51f9de3df3cd948bd1c3931c8fd879aaa59324c2b0
MD5 d1729952e1466a4bcdd347e47b3aeab4
BLAKE2b-256 08441d44775e20cf05df75a7fcf23c2430b9b587461c7d9b6e01bb39673c2dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlconcepts-0.0.1a2-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.1a2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e971819f54f8b8bc98ff41014641390823fa575ca595233c517dd95ab71baabc
MD5 af74df1e43738d77ed285b721d35b731
BLAKE2b-256 9e18ce68625b830a37a0baadc4e5ccc35d2f5d2f1c6cc3311725d5fe74507a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3583dffe7218826219b9832e82ae8858f2d847f1c4678a0231dab6f8ef6c35d4
MD5 778e68e3e0ae92c4597e39ad0aeb334d
BLAKE2b-256 eacf0dc2d7e6c8997bc878209b3a1242c30f325b9ac94fed9c20bc9f346f680c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc758bc3610bb2ea1adcf90a2dcd2f3bd9d884b7b614e39fc0d41451742ecd36
MD5 d83314b3b05523f5e3262a15d9245109
BLAKE2b-256 0fdaf99e07efbdf3c82975f8c0fe91b36f9c36654ade974996fa67d68be3c77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5927f13719e7ce3b93b5734a24b12f6593de12a943f3948d2fa04b0fd933d91a
MD5 044084be56e6f09cbecdb53dc516fa35
BLAKE2b-256 c04fb4333dfd9c5a067b3699c86b64c1814dfcae3343ff3672491d2f14d48ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4aee7ac92a03e702857798060638ceb2a8910fd802c8136bfce483f9a4fc73f3
MD5 a67ecc7ad37a8770fd517421918e3105
BLAKE2b-256 876fe9c84c0025f885f22fada89687a4d0f39c0921340a4db0d48ff6cdf9711d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlconcepts-0.0.1a2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 758034cabf5fd3bc57461f13db1b684f58ddc226a48ee0bb760c96a60121235c
MD5 330813423c2a449b82dcad3bed73ef63
BLAKE2b-256 e765e7641cb2f94cc9a9f96d0cfa2a7ea2f6df4cc894e53b8d2765a54a303267

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