Skip to main content

Python bindings for HypercubeCNN: CNN on Boolean hypercube topology

Project description

HypercubeCNN

Build wheels

Python bindings for HypercubeCNN — a dependency-free convolutional neural network whose feature map is a Boolean hypercube. Choose a dimension DIM; each channel then lives on exactly N = 2^DIM vertices (for example DIM 6 → 64 sites, DIM 10 → 1024). A local filter at a vertex reaches only that site and its nearest neighbors, and every neighbor index is a single XOR on the binary address — no spatial grid, no adjacency list, no stencil table to store. The activations stay ordinary real-valued units (ReLU, tanh, …); only the topology is binary, so capacity is power-of-two by construction and packing non-cube data is host work.

You stack local layers, train for classification or regression, and save weights with a small architecture sidecar. Optional helpers map images onto length N; data that already lives at 2^D (reservoir or ESN state, fingerprints, product features) can drive the network with no packing step.

Compared with a standard vision CNN, the shared-weight stack and end-to-end training stay familiar — only the domain changes. A usual network slides a window on a rectangle and pads the borders; here every site has the same neighbors under the cube’s symmetry, with no image edge and no stencil table. Pixels are not native: pack them onto the N sites first, then train on those length-N inputs.

Installation

pip install hypercube-cnn

Pre-built wheels for Python 3.10–3.13 on Windows (x64), Linux (x86_64, aarch64), and macOS (x86_64, arm64). No compiler required.

From source

git clone https://github.com/dliptak001/HypercubeCNN.git
cd HypercubeCNN
pip install .

Requires Python 3.10+, a C++23 compiler, and CMake ≥ 3.21. On Windows with CLion’s bundled MinGW, put that toolchain’s bin (and Ninja) on PATH, set CMAKE_GENERATOR=Ninja, and point CC/CXX at the MinGW gcc/g++ — exact install paths change with the CLion version. Then:

pip install . --no-build-isolation --force-reinstall --no-deps

Quick start

import numpy as np
import hypercube_cnn as hc

net = hc.HCNNConfig(
    dim=6,
    num_outputs=3,
    layers=[
        hc.LayerSpec.conv(8, bn=True),
        hc.LayerSpec.pool("max"),
        hc.LayerSpec.conv(8),
    ],
    weight_seed=1,
).build()

x = np.random.randn(net.N).astype(np.float32)  # full capacity N = 2**dim
logits = net.predict(x)
cls = net.predict_class(x)
net.train_step(x, target=0, params=hc.TrainParams(learning_rate=1e-3))
net.save("model")  # model.hcnw + model.arch.json

Features

  • Core train/infer — classification (CE) and regression (MSE); NumPy float32
  • Architecture productLayerSpec / HCNNConfig, export/import arch JSON
  • Model I/O — HCNW weights + arch sidecar (C++ interop); pickle as secondary
  • Spatial packSpatialEmbedder / SpatialAugmenter for H×W → length N
  • Train helpersevaluate_classification / evaluate_regression, cosine_lr
  • Contracts — capacity input_channels * 2**dim; after packing, pass length-N inputs

Documentation

Full API reference: docs/Python_SDK.md

C++ contracts: docs/CPP_SDK.md

In-repo recipes: examples/python/

Project repository: github.com/dliptak001/HypercubeCNN

License

Apache-2.0

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

hypercube_cnn-1.0.0.tar.gz (173.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hypercube_cnn-1.0.0-cp313-cp313-win_amd64.whl (444.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (256.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_x86_64.whl (267.4 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_arm64.whl (238.7 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_cnn-1.0.0-cp312-cp312-win_amd64.whl (444.2 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (256.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_x86_64.whl (267.3 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_arm64.whl (238.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

hypercube_cnn-1.0.0-cp311-cp311-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.11Windows x86-64

hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (284.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_x86_64.whl (263.5 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_arm64.whl (236.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_cnn-1.0.0-cp310-cp310-win_amd64.whl (439.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (283.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (254.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_x86_64.whl (262.2 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_arm64.whl (235.5 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file hypercube_cnn-1.0.0.tar.gz.

File metadata

  • Download URL: hypercube_cnn-1.0.0.tar.gz
  • Upload date:
  • Size: 173.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for hypercube_cnn-1.0.0.tar.gz
Algorithm Hash digest
SHA256 f0e052d2ff9b064d3ab7e08f5ec390972f96a961e54391e4d095bd9b62dc7ebc
MD5 a688ed854214a22a65d5748017cdc9ff
BLAKE2b-256 fa74a2ce56b2db51b5a1d83a958512105cf1ccbc74f69fd2920de345ee2ea36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0.tar.gz:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9656688e0be27ea722ee516c81795a4e6d4a6b0a3cff01e9eacfbd8c3a1ccf8
MD5 a7fc8920e0ca24c7df9c0b8f406bf49f
BLAKE2b-256 ca1d2ed5e2aed6eafffa97904b3c3991ed983129cabeac2532be528afb495634

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2f720009a1377d7962b6008dc35b6172bc64a8c5cc14ba5c22ca433b94ce559
MD5 f199e43be76520d50fd2aee2442db86b
BLAKE2b-256 afb0129895811c850d0e7dc05bd26f2d8de88299fb6a80df7938b1025cea6ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 592007d163f8f4f1fa870af07cf7ea0d33c53a5a037ebc144e0179b1e9fa9bb2
MD5 868f3012a366fdfd9b86a0a26d7a7332
BLAKE2b-256 e13eff041ee7dd3d0638fd89af88752fbf1d8fcc1bd9bb70340521d4b0f307ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a7a23397f531aa812bb838433d63be3d86cf0b37ebd3582d63cbbcd0876e9632
MD5 472130a14cae6d5fc42c5cd305db985e
BLAKE2b-256 cf25261cac399ffba7548a1054f710da6abd6c1fa342c938b7229d5c4e7f6ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8cc1ee0ee1c5d94fae6c4d1a4f999b07b6e67d025a36a78ad54753486f2ff755
MD5 29766d29f6503a7e26593abec3cbec17
BLAKE2b-256 1a9edf3fbfcc6a949f0044b146cf4da0608b9313e066d596d52dd0377dbf3524

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 137e337591a513b98abed72d0d6ae63e83853414ef643dc5266598e4924b38ad
MD5 b0a0c4caf9508790ac11c04b65be8e63
BLAKE2b-256 57fed9b8886fdc209218aa9c7b59ea462435f192d8bcf850913a0d9d1a432240

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7df908b058964e700a9d80c45b9b8c974a5c52f029fccbec2cddaa8c9647af29
MD5 b1eb355575a3322d98eb4da3d9d903b9
BLAKE2b-256 c6bab83f833d0f0ad7ffa7d265aefb7bf67c4c0bb1e2ffeeaaaf22e312e99775

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05571590b4c04875a880399ad9843b0c0979ea8e846e9d112af4c8e86ce51a23
MD5 7d320445583d087fb20ef1ecf43057c9
BLAKE2b-256 63d3ba65a9da7b8c489e8af8ab8cbe56bd92d51b0b0812b413298531e293af4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b631630ad277ee2fab8033fcd12abd7a1478d26818a6fa2994c3d5d8d868f5d9
MD5 a135a0cbaea89007557e1aac1001137b
BLAKE2b-256 5359bbe0f54bbd41b10655f8bb39c74c58557bfa0ba73a294d9bbab2e8250e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f755f7810d463660aa554498be57443e79ee7b9c5ed9af289cc0b9ed1a7aca2d
MD5 98952275c818981015b06b01fd81aa2f
BLAKE2b-256 e31960c7c1ceabe0010870c02abf7c11e1c95d69b71b9fc61a29551c5d88fab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e9536aa654f9254c779533d75c55bd2b4e6cdf61182886b2235c78194237561
MD5 8f9bb12087d89d50fccd89acae615c02
BLAKE2b-256 efdec69d110df5d308fc8fa901982d191230efce68e83c25b3a4e112d32c6f49

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11b28032ef498c45861bb15a1558cd2f2e4fd3fc689a956d635ea66bb0d714c
MD5 00a4e43ad56a7f152510d53f490ef5f0
BLAKE2b-256 dbf9a8842333adb3083d2a58f9d2d682aeb348dc40845485d913bcd79935e519

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2a68901227cfea3744440b709d0a91573c26f24f0d215bc1c0de3bf54926f01
MD5 ea5a432eb67d7136d30144d654e8dff1
BLAKE2b-256 0b245ed46aea802c3e566fb0a8757377426de58247f7f335e3e08ba667557498

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c8d31dd8447d52cfb22e0bdbb5422b6729a8a9cd45f24362207057c292498e27
MD5 98888f05869f1e1d1f1fe0275e76e144
BLAKE2b-256 e3459fc8fb0a9e49b200d99e05ccfea28c68a69df1c9d4296d1d09d75f3565a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 756d923b33dc0ab079e25a50c889567905d61a23827106ae2650cacb45aa7813
MD5 f34f4bdfbb4f6d71c1b8af276b689c96
BLAKE2b-256 34ef1dcc5beb538d40688340c5654ead9a97a13d6ecce7c470c30d66e19e7dec

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9de307678193ad2874a8a480624a762e4d4b20a089560d2eaadef4e02934b197
MD5 d43d9d82a8bffbb0c04006ecb353cfe3
BLAKE2b-256 247d6300c3442e2af47783d4c7f4a222fd2577826c83e9a9cd8c8b57fbf5173f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 807dff4a7129ace1929d3c4f8bb3956e72a565e0940f1f61fda3a97d81092874
MD5 5f6974cbeb03a73e5fc078dfa7775f5a
BLAKE2b-256 6da485d7e64a53829f52ec46080b831933e637aaddd18ee741e8c422d3a8711c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8f85f723e24361028179e7a1de1c4155410fec9362bd95431fe1c0fd55b052a
MD5 0f6c07c05d2141c194f598588e192a01
BLAKE2b-256 775478a99762ae61bc77005709769e4a856418e2c5e9ca754a12eaa2f4639250

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e8276ff43b6702bbc3d65c0f096f1b936065807cfd66ec25803541be42f6e1c8
MD5 5319d6a5e53ff6f8eed4a352d338a7e0
BLAKE2b-256 a7a2f66a724c0ebc9d2ef1e609b8a0f83493a7bad73dc82b098f5e0181141ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4c7f730f332ada2b6e49ecde50d9450c30bfef581616c0bb538b99b1eeb85251
MD5 5272dc6ebe08594da1d173aba32c6102
BLAKE2b-256 fb32fe48d14b2042eefc1b36ec70a3ffc5f1eecbcdb1e6935e3b13f788df935a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.0-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeCNN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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