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.3.tar.gz (175.2 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.3-cp313-cp313-win_amd64.whl (446.9 kB view details)

Uploaded CPython 3.13Windows x86-64

hypercube_cnn-1.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (288.2 kB view details)

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

hypercube_cnn-1.0.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.9 kB view details)

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

hypercube_cnn-1.0.3-cp313-cp313-macosx_13_0_x86_64.whl (270.7 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

hypercube_cnn-1.0.3-cp313-cp313-macosx_13_0_arm64.whl (241.9 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_cnn-1.0.3-cp312-cp312-win_amd64.whl (446.9 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_cnn-1.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (288.2 kB view details)

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

hypercube_cnn-1.0.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.8 kB view details)

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

hypercube_cnn-1.0.3-cp312-cp312-macosx_13_0_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

hypercube_cnn-1.0.3-cp312-cp312-macosx_13_0_arm64.whl (241.9 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

hypercube_cnn-1.0.3-cp311-cp311-win_amd64.whl (443.5 kB view details)

Uploaded CPython 3.11Windows x86-64

hypercube_cnn-1.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (287.7 kB view details)

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

hypercube_cnn-1.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (259.0 kB view details)

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

hypercube_cnn-1.0.3-cp311-cp311-macosx_13_0_x86_64.whl (267.3 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

hypercube_cnn-1.0.3-cp311-cp311-macosx_13_0_arm64.whl (239.8 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_cnn-1.0.3-cp310-cp310-win_amd64.whl (442.3 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_cnn-1.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.2 kB view details)

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

hypercube_cnn-1.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.5 kB view details)

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

hypercube_cnn-1.0.3-cp310-cp310-macosx_13_0_x86_64.whl (265.9 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

hypercube_cnn-1.0.3-cp310-cp310-macosx_13_0_arm64.whl (238.4 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: hypercube_cnn-1.0.3.tar.gz
  • Upload date:
  • Size: 175.2 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.3.tar.gz
Algorithm Hash digest
SHA256 3bfb20224235f9cd9c32e9155465b5276ff82389282ae543069b121058912a18
MD5 4cef8fa69f00474e95c1300f17862cf5
BLAKE2b-256 6092ea674ffc0a1bc82c3d8b23a9f482e1e98646e99e2c6f5708b0389ed63413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 efc15cf8410c90a8dcb7b556e834e50adcf1f44e2bc503da2f28519a4c32b58c
MD5 beb476cc1cd1ae33dd4f921aeb4ef53f
BLAKE2b-256 8efaed852bfb4ddf7415695f1d8ba43b5cfb7dd658c1f308f400cac1fb93b402

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a6c58d378a7300ebc1665e511bc64fb1f0eb8c04be5ec70e20a6f0ac7af61c0
MD5 af9378ee2a43f002c23d4cf8dc98d655
BLAKE2b-256 d544a53a6a1d2ba939b0d7a2fb18e295263470c032e6ee0beadb166ed0454910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc3f8c0527127e72e49265cce35a6c926985ddd0b6d9ef062af0249e7cb7ae7c
MD5 7eb30194f9d5067f8c43698282f19681
BLAKE2b-256 78c2aadf962fcd733aafa25f5d6e9b0c687edc209f80d4f83b1ca5139e9682f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fa799406c2d5518a12acb0d3e64284bde7e3567cc6515c3ebb5d04647bc84dba
MD5 5f0573c2743aa35472b0b3a1a78e8f7e
BLAKE2b-256 b1f6e89a503a5ca440aec50f54ffd94c0ede27b4563af026bdd5f3c75db02612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b320502acbae20f1cb2e74c8b48e2ac4c8f0108ef0ab305d124fe3a0ac3b21be
MD5 5d89b87d998a261285817ecd33dc5ba2
BLAKE2b-256 75fe397d9284c84bef0bca74f47b5441d85d6afa663e0493c9e6d46cde709c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a96f111d56c4e541816e0fd6fa2f843a822e0739ce23e9ce3c683d109a4d2094
MD5 59d2a8fe1dbf5c7866def4481437247c
BLAKE2b-256 73199e6d260d2590fbf7022dc31643efde3370aa9e64d00a937646af5a41b18a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 511ce669a0cbe4d43b6fd444a24b7fd26853809997c3e8f65f4e41e39de351a2
MD5 04667db4f94a98a87c99b9f7fe5cc3d2
BLAKE2b-256 fbe8a81a6b6324c844f8877e64d45af6db6adacaf8c23fff6bf7ec6a324fc4e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8e76a49950ef916cc54368f0b275f3fced6fd3e1fca409777a28d703c274e17
MD5 2301c04c6ad7abca2287f92dae5b8894
BLAKE2b-256 d313aef5a553f4a0fc32284a216a8537360139cb761a279a30493aa566d93655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9a4de0ef7d73eb074804d6f3b9b3a3b0636581c915afcf2d4067a4168f05159a
MD5 db43643723175cde620d40d0d3f5499e
BLAKE2b-256 b569e7b9ccbdc9d0f937077d1f0cd2929364575c0ad5f85719d093871137c3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6222cd41cd2507c1aefe2c23fac1bab961a2b2b6dbb737993038361418eac53e
MD5 7ca0c521b987267f29b7cecbecfcc109
BLAKE2b-256 d1429fa95fc6d4274bfa681465d844463a08e0d7a5098c1f73552da2fe198339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4bb131298c1e78514a0a50132e9cdbbdd41cd455b7f72d63ac5b40a212d0f64
MD5 339b6aa9cf67dda5e1f03eb7e66f676e
BLAKE2b-256 71fe9f2703180776136148bcb2d7fd0737476c667806a9576d926ca647f722c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee6ea2827c78e4227b1a0ebe3ca653b4fb9532d6e545387e7686e53efa526399
MD5 6d08dff6a6f8b561fad99b5b860b707f
BLAKE2b-256 f6dad6019f3520c59ecee3933b909354e9566e452b5c62a0038c617b169cc63e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d83e0a773a0dd2efa9d0a00109ce6a2faeea2c80e7f875dbcb6a391ed231fd22
MD5 59b809cc527b7acd32f21e0afcc99554
BLAKE2b-256 98d14f77b173226fee6f60d643f10eba02dc606d15dab76b926b73bb38189239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 48bb4dd1d273bc3ae1f072e2253b86a54c91526625a42eefb8470d07cebb4cbd
MD5 229ac50a7e8b45c20625a2c4c124a74c
BLAKE2b-256 22327f73b2f147099d60693afd60290b85756f69dc327dd5ea17a56fab07d244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 bafe2bd250b4dc2010427e540747a29d8ec3ea7540476844ec76055549512911
MD5 4d2470fd98651ea95ea9705e1c70e6d9
BLAKE2b-256 03818ad19cb6134e8ea362c25f2feabf7d1a31bede6deea6bf77047a06dfe48d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3260b7ba75604182f4701bbe238053765f61a3b9d95bd690bf5f48067d9dfe2
MD5 b7085112e6749a3896755556701b43df
BLAKE2b-256 a0ddbfb11a674403c35dece08b4c172841e18c4ae13cf65b1f651839b05ce25f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c037f5a5af6f1aaaa104884de99012d8f437b391d8de70bdf2f1bdfc5b4bfe09
MD5 14c569f72158865635089406c5263ee3
BLAKE2b-256 447e8fbce61635137b572474f209899473268cbb4a4bc192550f49466e4b669f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6ffaf868433cdf9658e781ff0bc305bf582fa7fb793901f91ec8a6b6e03c919
MD5 4db65d605d61159abc7e0b606713fcb0
BLAKE2b-256 34bee2c10d254ff4aad62b53cf264791e49ea5d6f889da846bdf7c379940d7b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1495ab80c4c16d98f81e913cf4835e5a117df6daabdbaa5ddf8cbe760c56355d
MD5 9019111773bfaaee34a61720e0499da5
BLAKE2b-256 b2f6cda27a02abd574e0da84b3ab95fb4638fc24c263a3853eab2a3f9a6bf156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.3-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1a2d1cfe99ee711535ff6af6471777b54132ef14b0a4931eccd9fa956a5a6697
MD5 6f60b863338137b5d12c5867f4e22b70
BLAKE2b-256 e0df87cc999c59fc82eee70ef8f386a2329bb9da6aad9e8d6ffa174e1d1918f8

See more details on using hashes here.

Provenance

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

This release

1.0.3 This release

21 files

1.0.2

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