Skip to main content

HypercubeESN

Build wheels PyPI Python License

Package version 2.0.0.

Python bindings for HypercubeESN — reservoir computing on a Boolean hypercube. Neurons sit on the vertices, each carrying a short delay line of its own past, wired to single-bit-flip neighbors by XOR.

Three properties follow:

  • A topology you don't store. Connectivity is implicit in the vertex indices — no adjacency list.
  • Hidden multi-scale structure. Full neighbor connectivity with random weights turns the cube into nested clusters — local, regional, and global at once — that nobody designed in.
  • Memory you can address. Each vertex carries a delay line of its own recent past, so the reservoir remembers specific lags by construction, not echoes.

The reservoir state is a signal on that graph, not an anonymous vector. What reads it is HypercubeCNN — convolutions on the same vertices and XOR neighborhoods, not a ridge fit on a flat state and not an image CNN on a fabricated 2D grid. The pairing is topology-native: the readout consumes the reservoir with zero distortion, and the learned kernels exploit the locality that generated the dynamics. The data never leaves the hypercube it was born on.

2.0 readout upgrade. Each HCNN conv site now has an explicit self/center weight alongside its dim Hamming-1 neighbors. The change significantly improves readout quality across the board (for all tasks and dims).


HypercubeAI ecosystem

HypercubeESN  ·  HypercubeCNN  ·  HypercubeHopfield  ·  HypercubeWTF  ·  HypercubeEtalon

HypercubeESN is an experiment in the HypercubeAI project — our quest to systematically re-implement classical neural architectures on a Boolean hypercube topology instead of Euclidean grids or random graphs. The central thesis is “topology-native intelligence”: the hypercube’s algebraic structure (vertex-transitive symmetry, Hamming geometry, bitwise addressing) can serve as a first-class computational substrate.

  • A topology you don’t store — the graph is specified: connectivity is implicit in the vertex indices; with a seed and a few config scalars the whole reservoir reconstructs mathematically.
  • Perfect homogeneity — every vertex has the same degree and the same local world, so local dynamics mean the same thing everywhere — no structural favorites baked in by a random graph.
  • Cheap navigation — each neighbor is a few bit operations on the vertex index, not a pointer chase through a stored edge list, so walks stay arithmetic and cache-friendly.
  • Topology-native pairing — the readout consumes the reservoir’s output with zero geometric distortion, and the learned kernels exploit the same locality that generated the dynamics. The data never leaves the hypercube it was born on.

Each product in the family is a different architecture on that same foundation.


Headline results

Primary validators — open-loop (NARMA, MC) and closed-loop free-run (Lorenz).

NARMA

tanh-wrapped orders 30 / 50 / 70; Same operating point (same dim, sr, memory depth, reservoir seed, ...) for all three orders.

Order Best-5 mean test NRMSE
30 0.0441
50 0.0751
70 0.1251

Campaign write-up

Memory capacity (Jaeger MC)

Linear short-term memory (ridge on reservoir state — not HCNN). Tunable via dim, memory depth, and spectral radius.

dim N Peak TotalMC
5 32 ~30
8 256 ~250
10 1024 ~820
12 4096 ~1380

MemoryCapacity

Lorenz (free-run)

Closed-loop free-run on Lorenz-63: input-bank self-feedback (predicted [x, y, z, x*z] re-injected as the next drive). dim 10, M = 2; VPT threshold θ = 0.25. Best orbit VPT in Lyapunov times for three trained seeds:

ESN seed Best VPT (LT)
3079493423467196890 14.13
696634088797950509 13.00
7934791766227647176 10.67

Lorenz

Installation

pip install hypercube-esn

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

Quick start

import numpy as np
import hypercube_esn as he

signal = np.sin(np.linspace(0, 20 * np.pi, 2000)).astype(np.float32)
esn = he.ESN(dim=7, seed=73895)  # explicit seed (defaults match C++ ReservoirConfig)
esn.fit(signal, warmup=200)
print(f"R² = {esn.r2():.6f}")
print(f"NRMSE = {esn.nrmse():.6f}")

Examples

Runnable Python hosts (public API only — no CMake / no C++ example binaries). Scripts live in the git tree under python/examples/; they are not installed by the PyPI wheel.

Script
basic_prediction.py Next-step sine prediction (fit → R² / NRMSE)
classification.py Binary sign classification (accuracy)
# clone HypercubeESN, then from the repo root:
pip install hypercube-esn
python python/examples/basic_prediction.py
python python/examples/classification.py

Onboarding demos only — easy synthetic signals, not storefront metrics. Frozen NARMA / MemoryCapacity / Lorenz numbers live in the C++ examples/ campaigns. Index: python/examples/README.md.

Features

  • Simple APIfit() runs warmup, collect, and batch train in one call
  • Hypercube dim 5–16 — N = 2dim neurons (32…65,536); delay-line depth M
  • HCNN readout (self tap) — conv on the hypercube with K = dim + 1 (neighbors + center); 2.0 upgrade vs neighbor-only kernels; not ridge alone
  • Multi-slice readout — optional B ages packed into the readout (readout_slices)
  • Multi-input — channels map to contiguous vertex blocks
  • Closed-loop drive — external feedback channels + reservoir_step
  • Regression & classification — same ESN surface, task-selected head
  • Streaming — online train_step / train_step_batch
  • Persistence — pickle, save / load, optional HCNW export
  • Wheels — Python 3.10–3.14 on Windows, Linux, macOS (no local C++ toolchain)

Documentation

Doc
Python SDK API reference (fit, streaming, config, pickle)
Python examples Runnable hosts (git tree; not in the wheel)
NARMA campaign Open-loop validator (N30 / N50 / N70)
Project README Architecture and C++ side
C++ SDK Native library

Repository: github.com/dliptak001/HypercubeESN

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_esn-2.0.0.tar.gz (28.7 kB view details)

Uploaded Source

Built Distributions

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

hypercube_esn-2.0.0-cp314-cp314-win_amd64.whl (428.4 kB view details)

Uploaded CPython 3.14Windows x86-64

hypercube_esn-2.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (296.6 kB view details)

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

hypercube_esn-2.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (268.8 kB view details)

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

hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_arm64.whl (227.1 kB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

hypercube_esn-2.0.0-cp313-cp313-win_amd64.whl (414.8 kB view details)

Uploaded CPython 3.13Windows x86-64

hypercube_esn-2.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (296.4 kB view details)

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

hypercube_esn-2.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (268.3 kB view details)

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

hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_arm64.whl (226.8 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_esn-2.0.0-cp312-cp312-win_amd64.whl (414.8 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_esn-2.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (296.3 kB view details)

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

hypercube_esn-2.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (268.4 kB view details)

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

hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_arm64.whl (226.7 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

hypercube_esn-2.0.0-cp311-cp311-win_amd64.whl (412.7 kB view details)

Uploaded CPython 3.11Windows x86-64

hypercube_esn-2.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (294.9 kB view details)

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

hypercube_esn-2.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (267.5 kB view details)

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

hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_x86_64.whl (255.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_arm64.whl (225.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_esn-2.0.0-cp310-cp310-win_amd64.whl (411.2 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_esn-2.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (293.6 kB view details)

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

hypercube_esn-2.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (266.9 kB view details)

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

hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_x86_64.whl (253.6 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_arm64.whl (223.7 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file hypercube_esn-2.0.0.tar.gz.

File metadata

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

File hashes

Hashes for hypercube_esn-2.0.0.tar.gz
Algorithm Hash digest
SHA256 5dc90a4372d547ef301f3cb485129b622e41b329a5e4f75214c18f108d5df9b9
MD5 8db19982a79de404db2aa50d0c38364c
BLAKE2b-256 ae50d3f5891b60cee031cb3d0bfce6951bc24e6fdf51b5214166b102f18c6fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0.tar.gz:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5917048563bd47de6c12491bb35cb3ec02c8048ee6407ecd0722711d8cff7fd3
MD5 4609fb462a113c2281ca167d5f2c604b
BLAKE2b-256 bee5892f4586c4d615f53ff933f1a587d623ffa24334dbc8fec8d9d20e730c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a9581e5b939a0536273a9f0cbfb3b5305900672d44bb096ddf19dbf0aec1d3b
MD5 33804bd604d05b2f554379ee40743238
BLAKE2b-256 2709370b6c96c5c9f7a783004689d8041c38eaddd4a3c803a88e97157f89b28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5015ec052a5270d0acecd446d99700adf1b8f2a03f0f4ba9dde5d55f0281df6
MD5 33e3d64d75334d94ebb75005941f25a9
BLAKE2b-256 a2237ba88412c05f745fdbb42e6862a0aa249010e87e9c87665c168775b58b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a12b2f0ca3db9b89d8e1287ba40013269c2045d18f4f6bf911328beddc921c1a
MD5 8710c860b72f6428a7004614db7afe66
BLAKE2b-256 c00415f11c89cdac3689575f0becca88951fab3b4aab74a04361103c4b979c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4e78a4ff7f36e59f67a7f8a38e94c2e31c92b29b4392d8abacbc285fc8c83eed
MD5 7835dbb4d597d35a5f8598e000d0aa29
BLAKE2b-256 d918fbe85196b1a9abea46e62dd2f901bf9faa485883846cca12a0034a3f83e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp314-cp314-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce73081c692050f4c13a3de44aaf73de3fa83c26fb0b2d9014bb9c6470c82096
MD5 62813c5c6ed9ae210420aef2cb918092
BLAKE2b-256 d65db5f613d065bb134117e0f57bf5f2b41e986b0e4d1369a04350df11cd8c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96d99d2330d4861c9d63826d89f64acedf2de20cb87096bd6aa1b6e06367b3bb
MD5 90af94ffa3d65ee03647b630a73a4f03
BLAKE2b-256 b945aba14e44c9f79eb657668db4c759af9dd31987118f50eede33cf981a841f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb2c9843fed80350e9d493086258a05f0271a4fe9fab1bbb8b5706ff18e749b4
MD5 8113cfd340d1785c0cf730706bddd4b4
BLAKE2b-256 4841409a1c15d48cd4c2587683df907b943f4306b93ba54ef26e1826d40e5445

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 992c0dc308c36cf23f11f44af87b4300b1c140a84c89669b601ec79cf394389f
MD5 a2bdd2fadabb6a1b27bed8f022df3167
BLAKE2b-256 af52dec86af6111a3fab52b3efbb2ca8aed2cfab260ef7f3778ef1e6a7cad8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 37fce589569eadbb33c2cc9c5b33b72ffc8fff5fa10b34bd081cadc5b44db122
MD5 05380a0114e4d4d21b94cfcf4d7c2aae
BLAKE2b-256 ec8809b21191102f0ca969146ba19aabc97d40f9a20daa30a54a99ff3eb1d963

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7105c44fc2b06320b61582c2d7fbc16a5820646dfe72929bd8e8330760c3e1db
MD5 f96f675fa76d6a691e4bdb01782cc0bd
BLAKE2b-256 0ce52cfe9d36e29eaaaf0efb8d988ec78c199a7aab8cf2597a249f47bc1ece5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc2131d06a1cd44de37cc8ddfaa7415c534738a4221320519be05af1c3043b3e
MD5 9532a108243c8c69dadb114c23eb9467
BLAKE2b-256 aa0424e7809b7ccbe1073e0a8fb729df971c010e77ab037e1d01732e30b37ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3199b16436e0632ef147362e61458a021b2686ea024071f6cd0666d353d514e9
MD5 cc599a365a5601cc59e09fcc61eee612
BLAKE2b-256 4ae8baa398cf507ce607997ea5e38b45b80b57df9279e34db654efcad970eea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f5b9c8a7e2c2fb60e4becdf613492920bfc78ab90c977e900f601f7dda5aabc4
MD5 88006e2b3918aed264d83609f506572e
BLAKE2b-256 d8b6d84aaccada82cb5abc0e9e5c0ef1a503b3600c2acb6def165f324a5c59ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c54e43aac5f3af3e23170664a49a6b8f6ea3aea67806125f64e7242716c65d10
MD5 b5709a6faf38916774f370a053c407a6
BLAKE2b-256 cfb67b00273103d2bccc69b6b6a2ddfe9fd9beef17f49679293e93a38fb597fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2630c35c51fea21d96d469b9f0cdf5dcf1edaac52b4be25c3650bdf4298a1230
MD5 1cf398328bf3343084d2bf4d9c034e72
BLAKE2b-256 8d909e730c2c0d31a1242cbac8c301ce8e1fb5a26e7388272184b4090b26200e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15647190ad36b2aeabfa32145ef029f97fff5c55bbe9905d4c9a11571622acc5
MD5 a7a2a562a0294cdd13bcba307a4e5851
BLAKE2b-256 d040bd0eafe3b995316fa1bc3816352646d6f31bac21933dda90cc331f37c7ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66de39c29723fc3c68438416c1f378a59760560cfcd1a442e5e3c4f348a775c5
MD5 17b652818f367ce22fb992a87ed4cdfb
BLAKE2b-256 9d8c524ff9b9b29e28541b8e87f97795916a85ee68158a9baf4bcb959dde9cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ba259ded6a017ea1a2bf6ad50c5a3f664212510927c2c54341246a3302fed5ae
MD5 138676e069655c370d2344c8fed05cd6
BLAKE2b-256 1507e5f8f1712b8178891b249a72a60363bf01ae0d43aff2429aa39faa8a6971

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 286d6a0a7cd67801f471d24d24bdb6ba7be8427ca40702e4965cf84e52d1ff72
MD5 d092160d82d299211a8d51943f143e7e
BLAKE2b-256 f6e76354497c377a3c917e275cd3bc41cfa2ed3b4358ca4f4c3efea72f241a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e24cad480465cedb98f59097d158a0d62eccaf952846b74e859f95bda2e382e8
MD5 67440dd928a92a637613fb9fb9005e46
BLAKE2b-256 1cc8d8b88a1859ea881bf05e0d7575176ef93285289631efa9036bb3ec34363a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f897652121c1d88cb98d3f128f75f86857de712997289cb4be835897e2d97ab
MD5 6d7261e7338930924a093a64b78383a5
BLAKE2b-256 cc267fd79a6410de1f8f1f69709cacd2691c34f20c573c5c00456811b2acf178

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d581102e252cc9473e100155ebf761faef39d3303751c111d996eb6c8eba703
MD5 3479c5514d4b6612cab1395634ea8406
BLAKE2b-256 4d534d39a119db19368fd4cf7a5b61f771432c37b1f6806a20f8acdf303e69ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 103e3f68d930af7d0608cd4b98fdf68494a77961b9d49146af535cbbafd44a2a
MD5 146cd8ca65e3cb821ad92545d0e145c5
BLAKE2b-256 852c2e04c1ca52708598d9111c68d612d6cbdd4fd3c72789d4ba0c046849071a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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_esn-2.0.0-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 53cade2d42747adabf4544840c3456262c3615e9203b75469ed44fa0f8bb13ce
MD5 de4e2ce98d8fff12466e064faea59b83
BLAKE2b-256 ba9c2765a93ebc8f69db837b72362cb2839027ff529f953e21b7b48593af0dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.0-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: wheels.yml on dliptak001/HypercubeESN

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

Release history Release notifications | RSS feed

2.0.2

26 files

2.0.1

26 files

This release

2.0.0 This release

26 files

1.1.1

26 files

1.1.0

21 files

1.0.0

21 files

0.3.1

21 files

0.3.0

17 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