Skip to main content

No project description provided

Project description

Perceptron-Rust

A basic implementation of the Perceptron algorithm as a Python package, using Rust.

Installation

This package is available via PyPI, meaning you can use pip to install it.

pip install perceptron-rust

Usage

Install the Perceptron-rust package, then import it under the name perceptron-rust. A short example:

from perceptron_rust import Perceptron

dimensions = 2
samples = [
    ([ 1, 1],-1),
    ([-1, 1], 1),
    ([ 1,-1],-1),
    ([-1,-1], 1)
]

p = Perceptron(dimensions, samples)
p.train(iterations=10)

Have a look at the example file example.py for a more complex example.

Training Data format

Training data has to be provided in annotated sets. The data exists as a list, and each element is a tuple. Data, then the label. The data is a list of numbers (with the same dimension as you initialized the Perceptron with), and the label is either a 1 or -1. E.g.:

data = [
    ([1, 0, 0], -1),
    ([0, 1, 0],  1),
    ([0, 0, 1], -1),
]

Methods available

p.add_samples(data)

Appends samples to the currently stored set. Make sure they follow the data format described above.

p.clear_samples()

Removes all samples already stored. (If some training has occurred, this will finalize the training.)

p.replace_samples(samples)

Clears all existing samples and adds the provided samples. Make sure these follow the data format described above.

p.train(iterations, should_normalize=True)

Trains for number of iterations provided. Calling this method multiple times will train it in steps. Once training has started, you cannot change the samples any more. You can normalize the output, but this will finalize the model. It cannot be trained further after this.

Properties (read-only)

dimensions - The dimensions of the data expected by the machine.
model - The calculated model. Will be a null-vector until training.
state - One of "State", "Trained" or "Finished", indicating the current state of the machine.
data - All the data fed into the machine so far.

Development

This package is developed using Maturin. There are other alternatives available. If you are in doubt, please reach out.

The steps are roughly as follows:

  1. Install Maturin
  2. Create a virtual environment for Python, and activate it.
  3. Run maturin develop to automatically build and install the package.
  4. Start Python (perceptron will be available for import).

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

perceptron_rust-0.1.3.tar.gz (8.1 kB view details)

Uploaded Source

Built Distributions

perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (430.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (451.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (529.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (446.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (296.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (267.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (272.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (432.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (453.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (531.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (448.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (297.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (273.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (433.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl (453.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (531.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (449.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp312-none-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

perceptron_rust-0.1.3-cp312-none-win32.whl (123.8 kB view details)

Uploaded CPython 3.12 Windows x86

perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (429.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (450.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (528.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (446.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (265.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

perceptron_rust-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (270.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (224.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

perceptron_rust-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (227.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

perceptron_rust-0.1.3-cp311-none-win_amd64.whl (131.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

perceptron_rust-0.1.3-cp311-none-win32.whl (124.2 kB view details)

Uploaded CPython 3.11 Windows x86

perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (430.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (450.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (529.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (447.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (296.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (266.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

perceptron_rust-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (271.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (224.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

perceptron_rust-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (227.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

perceptron_rust-0.1.3-cp310-none-win_amd64.whl (131.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

perceptron_rust-0.1.3-cp310-none-win32.whl (124.1 kB view details)

Uploaded CPython 3.10 Windows x86

perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (430.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (450.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (528.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (447.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (297.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (266.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

perceptron_rust-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (271.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (224.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

perceptron_rust-0.1.3-cp39-none-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

perceptron_rust-0.1.3-cp39-none-win32.whl (124.3 kB view details)

Uploaded CPython 3.9 Windows x86

perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (431.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (451.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (529.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (297.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (296.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (266.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

perceptron_rust-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (272.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

perceptron_rust-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (226.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

perceptron_rust-0.1.3-cp38-none-win_amd64.whl (131.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

perceptron_rust-0.1.3-cp38-none-win32.whl (124.5 kB view details)

Uploaded CPython 3.8 Windows x86

perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (431.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (451.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (529.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (297.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (296.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (266.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

perceptron_rust-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (272.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file perceptron_rust-0.1.3.tar.gz.

File metadata

  • Download URL: perceptron_rust-0.1.3.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for perceptron_rust-0.1.3.tar.gz
Algorithm Hash digest
SHA256 36be3cf1e2590c21189a5da1337cc505559a00db94a37443a93b84999b577898
MD5 cdb4383a61e60b4476964fa330e0ee2c
BLAKE2b-256 c6cf4e51caf0a40bc42cdbb1effd6b51bf9ce41388f65df9e9668d3c1703ba42

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc2e6f328cd79ff656f0c4758fe55698e911079c60eb400470ed3d1403c8ac9b
MD5 c0087f402f580808331cdc849e6e2dbc
BLAKE2b-256 64588caa8b142af2ce77ce2ec9ab74071638722e4fcd6e888da55e62b1918f14

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b4d265542c22b8b0405d76aa4c258514af904ef2a286cfbf28de982b02b7332
MD5 0ea2f453adaadacc136a63403ff04e3b
BLAKE2b-256 1bd9c595d1f0570ea2716e41fc6b723eda9acd90e49132a4429c08d7586735c0

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 664a4402832ede376510b0aa6680a39c411c77bb05daff6ae0d98e3d93e760fc
MD5 a516f5113c7ad05d36ba8abcce20033e
BLAKE2b-256 36e6fae2e9994e0205b99a70a4944b576d47b4c78d5427aac8850a23116f860b

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7beae8fc000b0c8c22086d15de90971cdb9537e5983e9c0198bf2b752090991e
MD5 f0c05f9f5f80926bb2c1231999b833f0
BLAKE2b-256 26f5b3102085a402c7208c2e5cfb500af861e7f89ac1cc3934b365325b8ef337

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b84edc29f25d40887ade2fcba07549059c287c3e2cc9e3e13ceada21139f0303
MD5 c2f690852bd1f3b9434336b997de1f87
BLAKE2b-256 98c22c405b03cddfe727b073bf8d42eca5fe6bab378e67985d520b1b847ecc0f

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 326bcb7eb0299634f5b97f73575342cdb2dfedd769bdb5eee6d3eb2ee849d769
MD5 617d8ed29ae109b09323b2a9bf7d55f3
BLAKE2b-256 c68438e593260f6bd85d38bf5a9fb412b2e5ebb7281f3442034a0438907030b8

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77789a9fde5bcf6462cca0f7050dc00204bf2611e5871417be5774b160897db7
MD5 f1004689b84643ca8da16330facb1b14
BLAKE2b-256 2fa5b466ac5811827e0090b2ce1b79fd2b0eb926e47bb30ee3673eaff411daee

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81d6627d14e333b46d11ac6399d23a7965a9a3604af60f81d9e4c8083e4c2a6d
MD5 042c75b0de0497bb03e6b8d0719d7e82
BLAKE2b-256 b2707a8fc680836322c7c9097293194f3973cce5fe83f40e06823b6649b4ec61

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39d615722f9dece8369c0c79724342a3524c9c50145ed4145aefa7a15d9dda78
MD5 eca1d307ea0c0287a477360b75d42cb8
BLAKE2b-256 b22a1bf1bc9460d96477b9833621afc6d49c60bb166dc13c24b86e135e848f7f

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e860fb4a85ce3f5d1825ea8f6f76bd08bf491fe8774e9df01c977805846bce4
MD5 8b54d57d834d398b2fdb6a958425f774
BLAKE2b-256 638431b35042a49f71f5fa4901144b52cc000c27e5fbeccf1e4ddbb244b5fa4a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 519f96a3337a521a17e111c1a59692dc445e13538e3d0cbf8ec2a660c47e6b76
MD5 85186bd85a840abf0aaf0e23f17e331b
BLAKE2b-256 df1c5b8cef6d67dc2a6dafd7899f3af74f70d18fb5043dfa11e0b64b04e48fe9

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e82c99c8d3f2bbe61b6e614045ef470f20fabcf45bcec8c9ce56dbe5967573b
MD5 ae8b32f31c3a51fb1c0767b5cb5fa558
BLAKE2b-256 f8514e0821a4d2f63190269d711093fbeeef97bd36a57b546ba8a8c414dae720

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aebcb36726dde47de41fc34c01ee87dcaeabab68ebf0929676d34d697c491833
MD5 5b125bbea009bf8c129b53ebee21fded
BLAKE2b-256 c0a759924470a2463602f3abc02c9dc6feaa16a1a16caeabd614ab302c54c627

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20e4039800f8a603eb780973b61386783678b60c51ebd6da2a076f1c70371708
MD5 063e1f8c101a23902870d33e7cb8f8a8
BLAKE2b-256 964df86d9f6d48e1883ff7077142226c01ac565c205ab1f438a3e7d421c0f7d1

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd604430caa42c298756611ea03b8b5325747b2dc469f3c2d2eddeb56cc1ffc
MD5 2242ce030d8d8264fe8ff542c60745c3
BLAKE2b-256 57ad4d9b9343e76b7e4cfd68b5795a5566880dc6e3398124d62a4d440cdf5ea7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 801a171c1bf045cb466c464fd3bb614a7aee00fee2ffa637c8e31e152559273d
MD5 04926ecbcb905e8a7d73cc06d9cf2d09
BLAKE2b-256 fbdcbb0146ae672fb274c484fbf00a19fb77e4cc221d197de05b8e34f4ec36b7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d6381f9087708c656eab2c6a5eb8ef7fc8ee8b70d9dcf773dd485a41d66b958
MD5 03a54a359d295438db978795a0dd6dee
BLAKE2b-256 35bfd0ba4e934d95dec496d100602e02987f142ae711cf49a2b81b919cbcd94a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25c634aeb246ffae1621458d714d882df3da55c3925231c53bf273764785f681
MD5 499ac2cc22dd46d0c29d86c12a70f065
BLAKE2b-256 d0fa6e90802945e233a6dedad576a5c7efe86fb2a0a5e2396bd97b7d4cbaaa9e

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94d844fc5927282345806870439bf54114195a16828a327cff6e5f09971cfe45
MD5 64fcd8a1529efdfffbe2cadfce28c35d
BLAKE2b-256 cca3c4639bcc0847e53d36fefa3832e207c7ab638878691838598936b6e06aa9

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92f67b091af535e9f7ae71ccfc78386b84f03a28488619af0a581492a28fb8b2
MD5 5ecfbb843adeb8e26731cfb367633da4
BLAKE2b-256 d49a1650e08da44f157fe45ff7a95e9033f63705db108d353ce76b727d06cb91

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b066a0ec19f741e0151812fe0fae0d0d1836676e9cf3c03a68c9407b9c9587d5
MD5 a6c381cdb7fa13ec3f4565f23bd70390
BLAKE2b-256 1899a9a6b81cf4af13fbdc2bd70a6a11a12c12c51753be5ed08de1e25a07ae40

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d039a28966538e10c9681f674435da7165567ed98f84b144fe4e8f6d8eae7be7
MD5 94dade0a4bde2c197de2a756518a9533
BLAKE2b-256 1f45ccadb0dace78f7baac3be2068c5bb7a1983db59fa9eaf3bd9737eca7e32e

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 387c8a040ca5fe0ac191fb759b822af9a579482b12ee353f9c240d6e1b9dbbbf
MD5 ee8550f8128b9207bed4006b95715e15
BLAKE2b-256 f8591dd81b5d6a05d289a3c8e09c4fa7253ee92a0a21171403cfdafb403831c3

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 306b9c9c22391e53bf1b2b49816f8ddf414d0332a161216f7a212b13533f3d94
MD5 6f789d4206e9af22afd89b0726dfd989
BLAKE2b-256 7c6b6f785d1b589802ba878d768342c43011895937d40983e842aec0356ba384

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 403ff81bf2ac39441d877d85ab93e3b6b210a009b7a5eb8c38344c976776523b
MD5 661c7a3366ed6f7e46f319e615b74017
BLAKE2b-256 bb501d5ddb4d0dd856df6951123f7100c9f026ba10d3b475567abd6d587b736a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33ba56caefff8a331afabe1b322ae47047e705f5289625da8aab7797e0cd5c5b
MD5 57da8ea69cf45b9da0efb895705d0e57
BLAKE2b-256 e6330827bf946d6bd2791119bd3b46edcd2834fcfc6e3f8580c3cc6c4c9c4c5c

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a1942355d9d29cc176bd1f4859c2728856543c626c6d13dd161cc5d5260c37c
MD5 5ae8383684903f3ac8badb25104a8349
BLAKE2b-256 37bd21bdf743cadfec9f3c97deccfa7cd9aa0078b83bea41fec2c705aae0d1e1

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c685445b0a6d55ac58c0564e873e0949f21f93776625de6c65fd18f4e81c013b
MD5 6b75eceec985f4f70c554fdd36d386c6
BLAKE2b-256 16d7fc5a68b4f84101020473be412ecdb526ea6a6d960d7b774d546141e365f4

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 36f9ca769178e89a819ac73c1ef36d1aafa4edac8de1b3b04786097750f6d5fa
MD5 fec431fac466ce3b3af5cf4cd84d70e2
BLAKE2b-256 6e8a79082625b1a1704892641be0b632cd13112058eec0f7a3908de03f506338

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-none-win32.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6d74d23893841c9e99b2bc5d255424b9e2f719552f39ee83a152c6c493dfd0c2
MD5 ea39dc98e6d12755c24e73f2fdea856b
BLAKE2b-256 3ebb5f0276feae24f95267f11d3dd96f16faaa8a0632bc89929b8ae2d881a706

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c81e6d4ce079e29d03e9e0e55e8cbcf059d876dac6c4afb03cf8db96e6c13209
MD5 13604e53b38d8511e13148b5d630fb66
BLAKE2b-256 13ff3cf9584b4ade9748e754ba538a5df118466a0f1617dc9061b492abe94794

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e28d75437fae770d9d5f8a3a0e22fdee7113b5c416b7229c0675cae54373d69e
MD5 27deae02304b53bd5cafc92594dac236
BLAKE2b-256 869b4b555ac44ec14839834e03e10f22efce731a9ab1218b052211c6f7485eea

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e128bf1c277a618ea4a6a9107502e3ae9eb8637e714fd6f5441babf084bac37
MD5 45ece6db3cedf484affd6278ca9477ca
BLAKE2b-256 80f350b538098e7f1331d7f716e523d87a7f9b73c9a482dbcdad694c52e238bd

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b905ce383afbdbd4481e259e234d30586eccd3a45080a0d78dda75bb90368fc8
MD5 c33dc01cfe224f283865fb9111e71906
BLAKE2b-256 3105decf70093e81e7aa7af0c140614cb348dab0900d7e5ca90e054d168dd472

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecf76891e8ebf156f41c6d066c2302b5b1d619c02922accfdc68839b8769d21c
MD5 c1aff0a3bef110200227a296b015dfdb
BLAKE2b-256 092f988df8445c5c30138677b3826962807ee785331484cd6dfa5515f97c5458

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 680642e9758c685ab8dfb53f2f5d338e0a2d5f46ebf2f4ed5c9d1490d169c47f
MD5 3c0e4492d89ffc4cfc191ad12e20909d
BLAKE2b-256 34343201ee2f20e5e503e8992c099f3bde54717df4b329ce637a58cabf35a63b

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 437257cb5928810c424c1d6871ba71fec2c5e9a42884c71d7503fe39813b5f7d
MD5 eccbc583c0097c748a1a673164bb5f50
BLAKE2b-256 560f24359d4b7844a9523f1bc0ebb2f935987ef59132a31b8c358ef99fd0f82a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0776d34358433b1b9d3727dbbea3db6fcbb5f14563bcdd6a5ebae9833ffcc016
MD5 e01cac0f9f760353905bb6c15acff62f
BLAKE2b-256 437b9180b22f56b83361246e4a1dded354e6d7cd58c5c29ec3db3a3c5b78c38e

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e8e44f6971abe3ba6de599b766b6a4d07d0518f55e7bead378eeeded6538f2b
MD5 7e13f1650815b45a91543b03b12b5394
BLAKE2b-256 3696447369316a4d38b241baa95cd9de61152da89924f56e3223528a7d7bbf2e

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55f8fdcf775108147dea63c70444fd2c76c7291c3dfa5c5950eb46a167f1d8f9
MD5 e3adbb25481b2491f9b826d329ade3ba
BLAKE2b-256 b64ed66950705c32c45db22033107395b4f848c0012cc959ab9751b1af8f7606

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 536161ff1a934ec7f516b11dd7cc88166143c4992a03404e8d6adba1c1a23b02
MD5 4019d02c9df0ecc23a9e962708124447
BLAKE2b-256 06f836ec85a03f08b150dfa1ab913d35bb57adeb9228c45014b9ff28730d3959

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 419d45744a5d3b16a0239a88f345bb36124aacd8b70bd8bdec02d87c5d7bc51b
MD5 774341932743c27b3c5843e05cba5c73
BLAKE2b-256 f967760e7ac214f291a9bf87c91be490936129325eed245da62beace1bb837d0

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6995d74891a0c893737296c927f19694857ffdf919839ec5f2284e22c42faacd
MD5 4bbdcc0bc0f5e01da596d74ab8d40b00
BLAKE2b-256 3b26d78c83a4f80305233156f28f02e739249bb0f2779eb5f32957de063fd56b

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-none-win32.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b64139beec4ce3d7ffa464d80c8a9dff1c3e0596aaaaf7a22f11aba2d4c2966f
MD5 d8299ee31d0dbe0d2dbcec0709ff71ca
BLAKE2b-256 02a6b3fca5f9a1c5bc99e21e024e30aef8caacccfa92180b422ac1bcd91ac236

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52dfa360efabe4b71474061dc9e0223879d92cef9b05a0a470ba4284361dd429
MD5 6a8aee9cd709123d134d8422a8699efe
BLAKE2b-256 e4319af433d4a8f2423e1d98bf246b6e3955ee01a9a282a3606907b4cff6b4f7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63163fdf4a7a1a8e4d6c187a53dcf9de4e19fd30cff52ec07e7776a0fbe8548a
MD5 64abf7ab79203ad84c19b056ef395d76
BLAKE2b-256 c670a6f7501e68912eaec2ffd34fef1dc2d82372a9ed2cd214f4085886475e81

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e76571e879c94170343a443f2811cf49ee0e5dfa30a1be2e4c506f108e3d69e6
MD5 0f5d74c2921cc1e016d38a7a5a8df687
BLAKE2b-256 81457d755bcb426abdcf97f2243f27c87cf091c48f863001535e2eed9539b6dc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ef1d29677214b315ce4b753ec75d1fc3a7e9cd8d30d8bc05b028687fed9336b
MD5 d2570254772834cd856a530236a4c0ca
BLAKE2b-256 3bacffc1c81a5d76330438291136ad6dd6b6960a6af398677202910f1745f90c

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a647fbeaa7db502e01ca9cee86fb51d8c585cdcccf5c3f4f23bb4663ccee369
MD5 dd91c713b6008a9d89ff0babafdf4106
BLAKE2b-256 4423ac69bfc84171eae88b338a46374edefed1b84470af3b658505d4a8a0a88a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e643ae4352bf64b610ee4e56c4a406a0469a977ce653d404a5ba5e83972e887
MD5 a1459d7dcaaed5ce7e2d81d2d848a550
BLAKE2b-256 ca094bd99d977dff524b2d94a190fc76f9d7833e02bcc31b6acc2e53073fd5cc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5760a1a6da7afd945ba5e7fe09c0a46e80eddac288ab0995b8dac293f40644b
MD5 02d65362b620c769300dad329df99a86
BLAKE2b-256 9e2bf44eff024f0f005f2773113da898de506e05023129f303a3caef9d65b9d9

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d8e1cd3ef0459cf71cdb71f2b5594f80a6395f2ba2770ae323e28eeafefa83a
MD5 08436de44c27fea3e9fbdb03c3a246e6
BLAKE2b-256 cdd153a5146f38d1ee529259161d599985a5ac8f1611891bcfe62c0ef90cbab7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3d7c49f762a1a7ee6edf5a512ef3e0b024783083bfc86859790ed59df6f8a72
MD5 2bd7d42a19154ffa4e733241a2e5b332
BLAKE2b-256 3248074eeafb1374b6609b61bf7d8e58eddc88e41f17773824dbda603af56e62

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e02cf72de4a6fae94d68a750f57105e1664ebbef1f42745ed90a3c9180be627e
MD5 5da73cdc1b760f02804ba0989ce2fc0f
BLAKE2b-256 6bd0bdc0f5dba9b8986490ff69fd40566fb6d2b5f77fd48d0d7a8340c8b45090

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2dae67d3b34c649364137d34337f357577754d201681eeb9118583761dc904e
MD5 13f93fe804146367eebd04468d37d71f
BLAKE2b-256 e43959ad160f0332323cff4b8176c670c7dc8f8e9208eeb43d6116ba2e3fd5c3

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04acd0254991bda251f649d30c26e494d03be85284ca1169588efbf36d2e1a8d
MD5 fa15608ba9170f4f095065bcb112e941
BLAKE2b-256 297e63cd522481c5036d31755c9cb76428f2c020c0533dfd1832319372f86675

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 aaebeb6f928e0a284a25d6c559f84a8b25c545c9a4325df3a063957b6e89330a
MD5 cbda01fb88cdd29396f71bc488573c1b
BLAKE2b-256 0087c44b50dd54063d64716ae0fdb6d9e197a7305340d1ec4ae43ad057cb1f6c

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-none-win32.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 431f82ad6a66bc27231ed65ff53bb4730f601bf0b31ddadcbbd91ee8a56ccc5b
MD5 8f5495b2f7f44675ecc63e6a85b7215e
BLAKE2b-256 22a23ae81b9c356e44b97d775967c369a32b90a6e7c305f6a85bc39f07d3c6b7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6676e59fdaf568eae20f1d0944f320bb72c42de85859882d884639daafe03609
MD5 33f1f2d3bf00e60543b3288816019966
BLAKE2b-256 d1d766bd2654fa5a5bb0b8c03afd937e775c3cb3cc811307a0f41181775a44cc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2cb98333215e9dd85681f8742e6147ace3e10ea78692891611065a7f59096215
MD5 7b6a2d2888662112e6c998f0186eb2e3
BLAKE2b-256 7cc02c7e91d750379a3bae7362bf13d4c4a1e431d4d78e2e69409e2fccee379d

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd9a57bd7378483af8cdee2adf9a89e84a52e5738a7f4e0fb0e34bd2b8916707
MD5 b8467710b22a9bc984413ee6e9f7a2be
BLAKE2b-256 5bd2f6822037926d2e98d0fc12208a06b741d1560aca5925295dfcad9ec23e24

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 331eb61c1ac714f8449d5c79cd1e7c4832de7d4a4caa938936f6ce066981814b
MD5 60e0da79c3b06210c667e3b11a2ca338
BLAKE2b-256 a650e30f6a3b30830db622b14cf4b5476447cf24a66a041ca6fba8de5d97cfbc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc47d3bbb7bc933a30740fe6d842b15e9739c1dc11e630fe9611fbfcfed05438
MD5 c4f7906340f783e642b93168f66a37a2
BLAKE2b-256 3830d560eb1d877337c73b74a2c5089dbda3ed5f18bab3491d1feb306d8521d7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecb56d35ea6ba39944532f378b7c0fd625a2af53cbf736ca445c786847e1d32c
MD5 c7f9199a9cd64c7ed341fe16cd7e575b
BLAKE2b-256 1174e9a59f4db7fc4940750e14ace4eaf64bf1a9b03ad527fc49a37519e77949

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d4723aae51761d22ec31321c9977fbf82a0363d9cdffc91d4ddcf1c0ed8fdf0
MD5 03968e1870cd6bd2d999180f4bd9452a
BLAKE2b-256 4f52f78e033041e68d590250614257590210acf034f5f1974c061b61f1fbfebb

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04fbd7c80f085d13d9b6d1234800e740efbe5a1b08fd152f6379a1a1e7c82ab7
MD5 65fd67a509dfa6ed519b1157854cfe4b
BLAKE2b-256 284030fd9ef1474074549e7e82e5381092b7f102bb0254e65b847619f3fd27d0

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66124ef3b833018eee9e513783b2c5f0a7a31a1445151cc20c7622d611186ae5
MD5 a609fafd7fce674761460d229618abab
BLAKE2b-256 ebb83f0c9d7c2518428f616923e2536db1355e10a81bbaf0572e196a912194e0

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ca9ca238c3c7a221b6c30068560c513d72073c3d1ca8e3856a5cc4cb35b7c9e
MD5 9f62143805ccf3f43f91d7d69f6d105a
BLAKE2b-256 d34a07dbe95752b92bf3130855f9fcbe5fcfb797f524143ae188e859e93658ae

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0be4c3f872e4ca42dc7714c92b8721339d20ae12aa0e27f216f7d76d32e8d9b7
MD5 12cf15ef06342afb92c29882f1f6b528
BLAKE2b-256 c2c34752607eb8bdadb30937ca386b60c4d565d3c8feb2a668d0906a62c895bc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a20af03fd7307438dda31fcf8f8bcbf2377f38fef1c16124dd53a5b7039bca76
MD5 eff3381fc9ec492b1eec9ee8f72f29fb
BLAKE2b-256 1998b7f8f90ee77cb93fce7345ac709bd85d1d9020a41bd7aae186af33cc1bbd

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-none-win32.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2804ae8f384bba7dd6b10b363a43602c12f1567d8c11035a81222356330eb12e
MD5 1a6b6f6cf2e3e65673bb3d0650e98afc
BLAKE2b-256 f88737b7079af90c8414b375d2e210f966be78552494f5a44a78d2d59f425b69

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 622c5c7503196a7237cff9bc3ebf1dd58770cefbeeb542350c893eb96edc6de0
MD5 364ae25230ad85ee3dc6f081d194435b
BLAKE2b-256 186561c23eeca10bd2c1f6a2317372aedd0d7169b4ae34eaf33368f1ea50f663

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50e61578caa833e9aa315a13fb5e6b7168a3d2e2a7ef426d61b8f03a36a14d84
MD5 0bcee6a620bfd92970d050134ee39c65
BLAKE2b-256 507489271979a7f1d59a9cf9be4265247dcb10b1e8df48289ce51d0b7d1d7b85

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33cffcd0135fd0c9445f606cb264efd3d8c447d0d3376c32d50b2d8b8ef20b5f
MD5 c09e2e856bd17d90265f36d1cc72290e
BLAKE2b-256 87f858ac4ff2c401d3e5289c8fc52e5645400342605a017488853ffa9d776928

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8212e5b0dd5111fcf86e7babf4da35926acfba64025bbc2bd3fdc4e0b8fd8e3d
MD5 d6b37471187c027944ebc4750e8f32e3
BLAKE2b-256 a7acda50700b1b7b8e7288d3bc00ff8d103049275ba7f903b1098ca6193e84ff

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00ef4127ffa13cd81779b1c54d6456dc6b74e1b733bc2c5491828b8c2ca72b8e
MD5 14583ec8a6c9091389a6341d42e87316
BLAKE2b-256 cae63331cd174f435c09d75203bee0bb793b4e6eeb5bdaae796bd34751d67ca4

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86a91fe45df7bcd016efbcf414f52b6da5ed1575cf074fad934885db8b29af89
MD5 f1b26338da3e0823312e24072219d817
BLAKE2b-256 5e4ade3e20590fb4b5458a3a124e872f4dee7932155a7f2812b8e22c242899d6

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f47ac4e547d767c9264088e82b5d49db2d2f227177b4ad17819108c47d2dabee
MD5 888d73b3c57e7e9acc422200faa35287
BLAKE2b-256 952b0cec02bd8b38bbf1ef1f99074b569295fe3989b8ec2f13b5a6b379384f7d

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ae088535ee5b5e8d44eb1aa7d7ac326676272163b42545f7eee9523794b4058
MD5 58f44dc31547cff5301c71b92f573933
BLAKE2b-256 6172730a96608a956343ae5344adb571f721b4bb7253089192537db8fc70734c

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ad7f19f00674073f668677cbb70a21f4fafa09358e20433d274ccf486d05e74
MD5 872eeedd9aebf6263e23592e2c6db09d
BLAKE2b-256 760061de137405c58cf7abbbc8abbd75a4169a815aa10407679e475018f83a64

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6e2f383eed90e26a1c2a2ca805271df3678949f5e91377b3e9a368b5afbca9c
MD5 80271d76d0ad831b3f8384ab38fc5fea
BLAKE2b-256 afa410a4050f42172ce683b61486bb05735fadf96038377dec5db663520971e1

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12b8daca5beed2455d119c9ce3d8cc0d11a13ffb40b47b3054b4482e896974f2
MD5 0dc4907a149008055e7d3b8464a8fdc9
BLAKE2b-256 62feac81f00792cb4cdba2052421340f82b3630253845219542b0167b9883ff0

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 67246a52b47f2ec0771419ef9fb3d4fc2e2ea0fe9bcf458ac8819a4504544ffb
MD5 743dcdd29cfc66c4b52e5db2f6a05f8f
BLAKE2b-256 6c6d689d8a35d15cdb4338281432558a536292eab3d0ee2a385e05086fe90a0a

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-none-win32.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 456f21c7cc6ef29ea4616e1ed38572f36d6b9cc2fb05660d33e3520ebb6e4085
MD5 aa53cb7d9d5553aeb3f5ea9c5f823231
BLAKE2b-256 b83f1b7dcc5ee20886e73e1c3c3516cd1e81bc8109691c509aa6f7a149125ea5

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d7b746bb844186940c7837d212379c68d19f9de8303e516aa017757a05c4ef8
MD5 479d12d8583534c12e0903e3960d371d
BLAKE2b-256 4fda11cbcaf8affced72145f1d6088d6c129097610bce88cfd9a3be249a38c55

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 678c79808b6c19d24a4cd7872588ddd8b20887d6f1f8509a829af5c7e3cdd2ab
MD5 e4296b8a2f2bf991260e4d1ad4a9e8b9
BLAKE2b-256 40d323983925a0e424fa03fde100c7510e639004b13f721036509aec1b39b125

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 696f7916f5027e71d7655e0e416999205779bdba8b546484eab07ca62a7e170d
MD5 9ba75ee4e3139b961169a04d118fa404
BLAKE2b-256 2fd380394e1d942c1038850d36d629363205743e370d44367641d00d59307cf7

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 513935be4e5eacce16d028376ae09988c4a57bd086d4eb3dfa018e84c582bd47
MD5 c61063ea742741e1129570cf4c79fce1
BLAKE2b-256 c03c4c9eeedf2d76bc40318fc4c8a3fc34c24193137afd9e9d5d8320d0c29c8c

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4e6184741cac9271aeecfa1c1bbf45418feb5657feeff2c9dcace8a0f970fb3
MD5 a2e3b615fbbb399026c93bf1473a9844
BLAKE2b-256 1525abeb829b70f186107d74442b308946f742c1dd5d70291f7d5ff6869a41f2

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66c6bd6dfef3bccd8b1ab6f95e560d14afa7198436e2eb2edcb4ebd5a20e4411
MD5 9ad471f3cc5450e188de97118e883f9e
BLAKE2b-256 18e3c44f72ac6862e6be0366071d4089722f6cefd95d573dff5e848937495dbc

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99c2f98ba6276f0b3f2845cfc58aa1278b15c8f11558484544a6543255993b71
MD5 6e997b955f617477882a39ff324029c3
BLAKE2b-256 52a465f09b923e722dfe5db18db696e4f6a9a4729d8be54c52c632ac90287f06

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a3fe9a4f0653eec242c2b530e2433b24172e76fc0f6d44280639463169e1af
MD5 eafeb8b9a5df358fbc43bf05e02bd5d5
BLAKE2b-256 d34750e7cdcbf2a01aa34de217eca0e40d34c3dad20f5c076208e5d6ae62bfb2

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f6cf17ea6458d005eb67c58291b601ee2ad489f9d1a95dab558eb1facf134a1
MD5 f0c8d30bb171c1e139b98bcd44f7e800
BLAKE2b-256 4151c31dca4f5fd8ddb2d862e0c3b30dcfba9bb276da5febd83f15c74f88d579

See more details on using hashes here.

File details

Details for the file perceptron_rust-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for perceptron_rust-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 10b3f30bcd9845c90e364bd4decace132473c1b6969c9ea9dee2e954c0687732
MD5 4b898ca21eaf4d6f542a277e09cb2c9a
BLAKE2b-256 ac5cfb4d55c1f4ef1893487ec3293cd54cc18a9d249af54e0f3c03aa00551366

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