Skip to main content

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.


HypercubeAI ecosystem
One geometry. Three libraries. Topology-native intelligence.

HypercubeESN  ·  HypercubeCNN  ·  HypercubeHopfield

HypercubeCNN is a pillar of HypercubeAI — a family of tools that treat the Boolean hypercube as a first-class computational medium: dynamical reservoirs (ESN), convolutional learning on the same graph (CNN), and associative memory (Hopfield). Shared vertices, shared XOR neighborhoods, no bolted-on grid.


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

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.2.tar.gz (166.8 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.2-cp313-cp313-win_amd64.whl (445.5 kB view details)

Uploaded CPython 3.13Windows x86-64

hypercube_cnn-1.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.3 kB view details)

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

hypercube_cnn-1.0.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.4 kB view details)

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

hypercube_cnn-1.0.2-cp313-cp313-macosx_13_0_x86_64.whl (269.2 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

hypercube_cnn-1.0.2-cp313-cp313-macosx_13_0_arm64.whl (240.5 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_cnn-1.0.2-cp312-cp312-win_amd64.whl (445.5 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_cnn-1.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.2 kB view details)

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

hypercube_cnn-1.0.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.5 kB view details)

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

hypercube_cnn-1.0.2-cp312-cp312-macosx_13_0_x86_64.whl (269.2 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

hypercube_cnn-1.0.2-cp312-cp312-macosx_13_0_arm64.whl (240.4 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

hypercube_cnn-1.0.2-cp311-cp311-win_amd64.whl (442.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hypercube_cnn-1.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.7 kB view details)

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

hypercube_cnn-1.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (258.6 kB view details)

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

hypercube_cnn-1.0.2-cp311-cp311-macosx_13_0_x86_64.whl (265.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

hypercube_cnn-1.0.2-cp311-cp311-macosx_13_0_arm64.whl (238.3 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_cnn-1.0.2-cp310-cp310-win_amd64.whl (440.8 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_cnn-1.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (285.4 kB view details)

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

hypercube_cnn-1.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (256.7 kB view details)

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

hypercube_cnn-1.0.2-cp310-cp310-macosx_13_0_x86_64.whl (264.2 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

hypercube_cnn-1.0.2-cp310-cp310-macosx_13_0_arm64.whl (237.1 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for hypercube_cnn-1.0.2.tar.gz
Algorithm Hash digest
SHA256 82a4219ae348b698d42d20a5542e910b653fa0761fd739f7b8209db48276481b
MD5 b13fd05604feb314b60fd642b5f5d8f0
BLAKE2b-256 c0e3c8c9750e38a0a96cd7e9f85a04d2ab5301f30d178245344e01f6d8b36886

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2.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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f9b3ccc98eba2a2f6555e83aca87e3fac8bf22a9bc77bf811d2984b82144b002
MD5 534d23be69f02759fe98e31a6ab499cb
BLAKE2b-256 0ff87d175be19d968bd22524c6a332fd92c2d54424a02e47da69fd4f14f69698

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea9f10f1c0bffa4e236a64bc6f9eea3f11b8e36b399c7bdccbfa1b0cc3553205
MD5 602add2d9b0c655cde75401ba719091c
BLAKE2b-256 5628952637e4d75b001fcfbfc4e413ae1b9f7bdf649e59baaa49da21b0b5ce75

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19ffcb245b5c67250c65d6296468968dac0d324056ed887fc08d597618615204
MD5 368b9d280d2e94c87a2a797d0b13e2e5
BLAKE2b-256 152f4cf8441bcb5518d61a791386d3932af019f6b2bda85492e21192ac7cfcd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9340593f0aacb60499e87ed23e6ef29a79ff2da9ff6feb2d161ed6c6c1810660
MD5 f43db7062cc5403cd529ec0fc06f1c87
BLAKE2b-256 01d5eb8641ca41c614733d870392b378fc0ffac40e190cba715db1dc09ee24fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3197ffef35be3547dce005d549e6174ae617bbf298fc5d9de906d4c5762aa693
MD5 1f797459e1aa6eb38f06cee2f623eeea
BLAKE2b-256 cf271a8e2a30c981c6d817e76764114fd1b64bf00db33220b576261708f8692b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 872e87412648df076306e3ae021c792cd0aa9aa1f8e629d7c7d9b143fac85123
MD5 0e24dec1524686cca9af646d07ba1065
BLAKE2b-256 20740b4bca546ec0f553546889e4fd2ff7d0f59e73e45cee30eb079405f7511e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26eb3e3d5acf61de1be4d6cb163c4202d237c25136389dc25190432f5c5ab5cb
MD5 806a694dfa00023c6c90ba60e0c22a8e
BLAKE2b-256 13970b5c2e8c4e4993ffaaf7dddaf3c5a9c5f770d093cdf9b0dee45254d0b409

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bbc0bf25606135b3506660459382f764b82847ccaf7bcb1bcb3debf2f5d6b6a
MD5 d1400f68cee7f6d0667f09504ae91474
BLAKE2b-256 2ba1c6ffb3e44845723f1d3fd5416a40d401bb560c44b719f960197e590064c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 80f567ec5636893adf6309e189b85eb2701c33096eec2ed234a2130b37a68ccc
MD5 db4dc973ed6ac6403a9006f8756f5178
BLAKE2b-256 330d2d1c5abfe5e8b79291455439be69da591d0078e4bf697baf61a0c4fc3ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0782b9579e15146d194c20e3a812c39d3b7d532efed6dfc666812885e10c5cf3
MD5 171d3b46bafd7e1b6aefac731f31aa96
BLAKE2b-256 09164ea95e27fc46c89835636f6934db60d0dc66caab0412233c21e9fae32ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a333deaa1486e76a4a1093e5a7ee23e71eb73fdb31f0f93a02f863a3907f04c
MD5 4df8ceeb31e8a1b09897b13deeadfa92
BLAKE2b-256 2df1f9fe8fad2826fe739875d787a420caf78040c358c7cdcbb50188a56f9994

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 189cfe219ece96b847741e4778ecec94507c94397a3b395e90d1e61e03d9bee0
MD5 72a8747667438ed34622caf435a8c12d
BLAKE2b-256 809463caa7f202adbd5d4b9e17f60ca648798e2f58fdf1354a97747cf8325391

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 179cbcef81b7ff520cc492e65c15b1940dc87269bed395f051bf051234e92a0a
MD5 158ac977b22a6f1d21bc49fdf25373d6
BLAKE2b-256 52c3d800b1123dffe5502a39c3f5b6c0a3e7507c5b0af92a5e3086e81e090c8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a32a823d71cac16fa61f94cfe292a4feeb1fd69d6e57d88bf03a312190cabf9f
MD5 a9b158da15e42a46677585dc03e1ee6f
BLAKE2b-256 25e5a9c11da9cdfc3e94d5f3d0340bad2b8b6005be92f2ae96cd2a39d6872520

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4a84c3153d9b97bf94679747e4ebafd18e6d1923798b0725b444f5c88ba007b2
MD5 c455e09ebf6c522ca6b2e471b2797cce
BLAKE2b-256 41a4b3bd1cd1384408997ef3907bbd81444b9c4e913a96b190bc043ac6689d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 adbe62552961fafda3e78f74e462398c008c9eede624f2ac97eaecd21ab953a3
MD5 7e77f424b164e84aed6c07415f85d180
BLAKE2b-256 442f86ed5407f0df89c17897c5809c524a4de2cc9f0f3581cad598a4f1af3eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1aab4eabc8acf11737caa3d57ced0dcd71e39957869a66b6a7ff217d484c08e
MD5 741d8acd8cda3b0bb9b6826801d9f5d4
BLAKE2b-256 61abb18cc44b53b92fd0b09a12a428b905018e8a132947bf1f9a16d35fbcd47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f972e1ca7e9aff101bf8929d80c66a4935ce856c82bd89fe1ffa21d235152cf
MD5 2169f10683007cec139eec62b1253710
BLAKE2b-256 9be3455770704cd9761a34bb43b40b8f26b89c0b1276ab709f719d2d4b6cb43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 67e615df0c53a870c01fc9256b780764f4ac1d221d1c652f9b3bc64bd52ebbfe
MD5 067c2e01a71d268a755fa1263cc3536c
BLAKE2b-256 3d8006d20454aee6e6b7694900a77cd7c7bc28c86647a24c25062b7c45dfbf82

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.2-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_cnn-1.0.2-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 38b112cbdf79381015903625e6810ff873ce116aeec5109af1d727d3b16a9df4
MD5 2732a7f13fcb3f82870a1df4b42007bd
BLAKE2b-256 3270ae8a0e29bc8f50ab80927a5373c76732a8d541cfe897ac14829eb0557d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_cnn-1.0.2-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.

Release history Release notifications | RSS feed

1.0.5

21 files

1.0.4

21 files

1.0.3

21 files

This release

1.0.2 This release

21 files

1.0.1

21 files

1.0.0

21 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page