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.

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.1.tar.gz (165.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.1-cp313-cp313-win_amd64.whl (445.2 kB view details)

Uploaded CPython 3.13Windows x86-64

hypercube_cnn-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.0 kB view details)

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

hypercube_cnn-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.1 kB view details)

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

hypercube_cnn-1.0.1-cp313-cp313-macosx_13_0_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

hypercube_cnn-1.0.1-cp313-cp313-macosx_13_0_arm64.whl (240.2 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_cnn-1.0.1-cp312-cp312-win_amd64.whl (445.2 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_cnn-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (285.9 kB view details)

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

hypercube_cnn-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (257.2 kB view details)

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

hypercube_cnn-1.0.1-cp312-cp312-macosx_13_0_x86_64.whl (268.9 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

hypercube_cnn-1.0.1-cp312-cp312-macosx_13_0_arm64.whl (240.1 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

hypercube_cnn-1.0.1-cp311-cp311-win_amd64.whl (441.8 kB view details)

Uploaded CPython 3.11Windows x86-64

hypercube_cnn-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.4 kB view details)

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

hypercube_cnn-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (258.3 kB view details)

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

hypercube_cnn-1.0.1-cp311-cp311-macosx_13_0_x86_64.whl (265.3 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

hypercube_cnn-1.0.1-cp311-cp311-macosx_13_0_arm64.whl (238.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_cnn-1.0.1-cp310-cp310-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_cnn-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (285.1 kB view details)

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

hypercube_cnn-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (256.4 kB view details)

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

hypercube_cnn-1.0.1-cp310-cp310-macosx_13_0_x86_64.whl (263.9 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

hypercube_cnn-1.0.1-cp310-cp310-macosx_13_0_arm64.whl (236.8 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: hypercube_cnn-1.0.1.tar.gz
  • Upload date:
  • Size: 165.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.1.tar.gz
Algorithm Hash digest
SHA256 c3c40339a125bef170177665bc291afa5d2a47423bbe36fc6b49713b87237a35
MD5 30461a7a501fd44115ecfbbe1b325f36
BLAKE2b-256 dcb64a6cc026b39922ff6a45db091141c4ae466f8fd8ce97128ef47a0bd2b4d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb72aaddb7fdf32ae37e27a75854e8f9efe502c69192975e69c19109407720bf
MD5 a3504d4320d87209cbbbbc58ad7d46de
BLAKE2b-256 c704b0bfcf31a25ae2d033a590ce2af0ed2c7339e9685e23fdb54d884b4173e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c1dba8ac8c49f1b386877c786c69d002fd0dbcafcb48ffdf44ac64a10982773
MD5 cdefdf61c78b5b6d3b37e50deb249fe2
BLAKE2b-256 3b3c054f2e6105b9a4630b24d776bf815765313611d9b0ec6bb5c48bcabb5202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cec29d51e262a43a16ced2ff83404a2e7999621f51fca469bfc8359ea86b676
MD5 485f770f275c478c5d4e4be93648a27d
BLAKE2b-256 469d63e999ed35bc26c3f3e4baf48841626b50afe98b8219dac094367935d0df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9a6a50815842cb86ee625d7601e0d5feb9c495c25cea0e221152b550f906d86f
MD5 e44ad511d93eb8466f5393dba3fa958a
BLAKE2b-256 0a776ef1288a4c92341be50348877da9ca7fea5d771a09222b2e9b4e39683c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c26a3d436d0c4e721d05f37237f6a74433dcb183bb84203a11934fa87778298a
MD5 2b1c5de1443d18b97ab306c146601e13
BLAKE2b-256 0dcddedbc62053379b7e188f081663e6b0cc93188994f780e59db400cb290331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 caebf0a98211b03f9fd3d9cf0bc1a0fdb43ba747d789ebdc5af7f1d2b992d64f
MD5 747c97eaa26b0e1551957b040991e416
BLAKE2b-256 2525853d29ad130603f01d014152eea90ed9182d944242a947ba608e0f5772bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e94babe960c61472d80ff0c80bf2fd3d84ab5a1103ffb3b4d1250663945a24e8
MD5 81e0e0d40a654ffdb4866d40bf27529d
BLAKE2b-256 6e33f10df08b08e2963932eed3224a829bbfb1dda2ce9f11d90452115258dd1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21c0d705199734b2207f99fa30233991d317647e03f4d9de5e8c60424a23b2cb
MD5 92c541ed2680f2c87fe091c64f816aa0
BLAKE2b-256 895a07f459959c2f35a03c617f5496ef099c195f2443c18d1c30739c94b75165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7e56248fc86aba714db2be26c50190b2a0c1bb1a57c2d29730ec1a67432a6b66
MD5 989d512e17d4f56d679f8217172f3c3e
BLAKE2b-256 cea08f1b60a233207c410c2a8f33a697f304e324b6f00d036398b4be0d708e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 358f3cd1b70fd5cd0855ad864a11712efaecf8c41ca8992b4a3bcf9873231401
MD5 977d98cf8e8fb081b30ddcab5f41cbf1
BLAKE2b-256 eedfc344ff5d0138f42013125fdce0c0a4af1243eeb58a16c42b9935e040d754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd78ba7a1f2abc7d742dbe69490f7f2cb1f9b7c6f52852dc5b96182cde4c5970
MD5 a16608b02f1271a643b027c615e87ae4
BLAKE2b-256 8b9b7ba03d3caac2d2035c2de0307b7fa2a31bf2bd2cf95fd542de70d57b29ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 539c80487ba06012a8294b9ea57164331ecc330074e7a89f1b03b7bd3616eb09
MD5 bf569b71f5489ffaeff84de67ceb1888
BLAKE2b-256 9f4343a7a83c694bb2d1a9c584db261ce0e61928d5bb8b21a51a09f5282a20c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a4f316ac00ea1038fb2fd81e37cdd6c951220dda432d74652d265700a21125d
MD5 83604dd0a589560cf853fcc8485c6ee2
BLAKE2b-256 3eb49112d227500c655b64d3c2f68cc01ac2318af7c5a0c757fc92f5f7ec2f1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d8d95672d182e8d33f060d0d7853bf0bde22306dbf1e7946d6e3cfe83bc9b0c9
MD5 fd713f1dbbda3de102ddc813a06a6f60
BLAKE2b-256 6106f29088ee3677c6884d79893c1c54158daf3953970de140d3c575b59198ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 01d74edfcfcfc15b903d42c91e6490e2d26cf2ec57fbcf77db61ad1e630b8933
MD5 e66aee1a47b039882d3fb1e94bd4519d
BLAKE2b-256 7fb6bae1061e6d735cc2014a31beae905f837f3ca566db09f14206d11aef2635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 418c2f8fa5afa41f4dc62b88472ba80536051b9293ab2e16caa8f7f4f8331297
MD5 b43cb4fbdc38447fdcc5a240a8ce1710
BLAKE2b-256 21377c4b50bfc9625438d5984876a2fc5744ef2080dcec656f091a63842a26f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 658c6b58c983db61c62f99ffa012e24854088d039cd75aabee3bdd69ac2b4c28
MD5 0d98f3c16ba2783a3c716dcfb5f633b9
BLAKE2b-256 49d27e80135cb220e75904c982214a39bb46065515be434d59bd91c51ebb3671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b8d53e16f216a96935916e4d0c9e943427ae8a7feac25f9fbd22733a0285d42
MD5 d839546c68a52aa3a4087b02406ebbd1
BLAKE2b-256 a079803f6b4a01d878232dd7f56330a34c8eec9c5d6280daf6928775338f71c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0d9a3ed01496079886f25c803e74d8521f01a444dd639e876df68de403382581
MD5 9b9f36ff8849631bfd06efb41813a400
BLAKE2b-256 572248ebeded52d5f20d5f7b67bf76b8b7199888cd94975465f4a549dc3a92d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_cnn-1.0.1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c33a3b8b5d71210fd53bcc2573ed2a6e8d0600234998ff3b19f00bf58ec20e66
MD5 579aab803d9c695691d9a83595221396
BLAKE2b-256 fffe97f46268841daedee27321ef1ab632da50aa2650bc67cd833f85a014dcfc

See more details on using hashes here.

Provenance

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

1.0.2

21 files

This release

1.0.1 This release

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