Skip to main content

HypercubeESN

Build wheels PyPI Python License

Package version 2.0.1.

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  ·  HypercubeCascade

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.1.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.1-cp314-cp314-win_amd64.whl (428.5 kB view details)

Uploaded CPython 3.14Windows x86-64

hypercube_esn-2.0.1-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.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (268.9 kB view details)

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

hypercube_esn-2.0.1-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.1-cp314-cp314-macosx_13_0_arm64.whl (227.1 kB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

hypercube_esn-2.0.1-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.1-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.1-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.1-cp313-cp313-macosx_13_0_arm64.whl (226.8 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

hypercube_esn-2.0.1-cp312-cp312-win_amd64.whl (414.9 kB view details)

Uploaded CPython 3.12Windows x86-64

hypercube_esn-2.0.1-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.1-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.1-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.1-cp312-cp312-macosx_13_0_arm64.whl (226.8 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

hypercube_esn-2.0.1-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.1-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.1-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.1-cp311-cp311-macosx_13_0_arm64.whl (225.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

hypercube_esn-2.0.1-cp310-cp310-win_amd64.whl (411.3 kB view details)

Uploaded CPython 3.10Windows x86-64

hypercube_esn-2.0.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: hypercube_esn-2.0.1.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.1.tar.gz
Algorithm Hash digest
SHA256 039c338c429964e8f40780f446526123533dab4f4398cb20304dbc10ba889f09
MD5 e97564c07c16491b06388a059d61651b
BLAKE2b-256 2019674122222582bad794080ddbd64d47afc47ad4275a32abe6b99858080c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1.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.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d02c93f91b4b1def9290199703664159867de7a8f4d38e80c00373a5e8ab799
MD5 f34f900c7514621b318705428efff555
BLAKE2b-256 440f99f37d4bce66fbfa7e56458718fce315204ade68993c66ced8630b457747

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1-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.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66e28b603ceca0c17da604f9aec7249b2625691425051c6d1a0076ccb5c48d8b
MD5 22ffbbceb87e083eda742c72f0f97a49
BLAKE2b-256 cdf4e28459e22670ebc89e247b4e83bafb8a0ec04c945481c6298a361bddb2dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1-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.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f42189f37eb7e3519f113fd6211362d29526ceb29bfd1642d9384b867b014d81
MD5 9dfde9b8c8504564aeba049bc31d5394
BLAKE2b-256 a980213c3671025b62b6df128b956edcdd185d18ab8320fe346007c933e9fe9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1-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.1-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ca028582ff03182ac8ab2bc82a2f828a4d40627dd2b7d5086bb659f81e4526e6
MD5 73a48208a0fdb8eccf8774fc5f20dabe
BLAKE2b-256 49145d5491458e8162cd2fe5f3e7c2d73f1dc01c9fae933563c4400dd2083d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1-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.1-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0a08e032982d96044ff1c8227d7f062d5049e19e645fa068b9d03ccaa9d952f5
MD5 03f044256bae4113a19cb4d2530d5ca3
BLAKE2b-256 60740719d2a88219adfcd810c24776374e9347d70e26367f355dc08be7b4ad5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1fa453d71a08055d39f6011429852a333b452e75b8e001f4e6f34eed08761ac7
MD5 c4748219d6ea69b6d6e1a05b6beb350a
BLAKE2b-256 4af472c1ca7175d47497d28833d26f6abe89d4a407fff1c98006dabcdaa8b042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78962b053000c004c2c87605d7786ac5c6b55d6042bbd255d0c8347d630ea8dc
MD5 bd0704f50c80c6fa2b7fb00c1a3ba8f6
BLAKE2b-256 8f3cfd76765b48cac5404739ccfc1af28d2f70ee45cceac443bdd97c4dea75c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d6841fdbefae36a2e51c70cd07446f5bf91f8ce87e9eb0243071b2a12b2ce27
MD5 bb3fbb8b0101cf2ec8b545a512929f38
BLAKE2b-256 54135db30e9d00fcf2833d665f59f6d9a7e6753727dd40a256829a35e0301687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 37e80188d745b60363d77b5a8cf1ae07f3f03e0b8d085c2d4ca52254bb338a75
MD5 6018608dcc71cb34fa060f5f38ab7391
BLAKE2b-256 9d6462eec5da5b1a0c2512c5287b11cd55788341b0946a742dd4ed6e1b957820

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6320b170ea56ff44bd2f7eeed22834b017635b9212293572f36bb760663bea18
MD5 8c6360f0138ed9f068eedcff26afd63f
BLAKE2b-256 0a122278d7b25797c62593193a3ab61e7843808b2231a2344cc5ddd4c0b8d192

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 66f0e4689f73dd9145a4113d6483d8d2fd10f85d4793980b9976e6b1496660c6
MD5 cc13980a0b494b8a2cd8e4bd423d66e0
BLAKE2b-256 7b8da824d1c6ed19ac80b2e4e6df2d146fca45d8bc321ca891276aa7f29b371b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75eaaac700a21045035ea3a9619b9d3d45e8d0fa1eba68a4257f427f3d060c58
MD5 34358ffe8d53c17c8a4f36d05e4b9c4c
BLAKE2b-256 10d6f86f6586d265d83f74aca2d1145bd5799307eb1de3487f9dd7728d154718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ef8f861aae76063bbd4f8178e474f6ff8743478390774d9dcf0343a091f4e0f
MD5 7d562710f40a93e3f0a48afdfdd9cd19
BLAKE2b-256 10ec13a50bbb79de672496d289b2fbcaf4c13de3e9f20e78af654094c9c62bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 73cd8022e0540102cae452fd9380008008a190d9f42d251fceb2a3f31abdd965
MD5 2a6de3aaa7470b88717e828202e553b6
BLAKE2b-256 d8994e45d5cd04ae4b1b57a871c14c059c66b2a31750fe64e779c0e24d6f1430

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 caadd75b6f2a2f5e14848b8a51ae6b76bc60c07f5bd425e08957dfa38779d4ff
MD5 9a966eda5c894801ba94a712b6e5fe3f
BLAKE2b-256 e0eaa1e4dea3b9a709a6cf23ceee03aea8b90451cb86791a03f65f73b3e4b706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de809f06752d62513bfb686010e24090aa5f2f80b96bbf695af3baabc9f0ec00
MD5 0abddf7d0624cdd1119617dcc0774c7d
BLAKE2b-256 8833e3158d458dea47fef9d06c525bbd89dc65260730437ce6583a13ea96d26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33d6d54a85eaecaafd4b10f85cb3cbac466a1c5509facfd79891cd5eab28129a
MD5 b4f2ba97ec2267ad68a29809caa13647
BLAKE2b-256 7219f2b0f41428cc4fab90b5bc135039155458448e1d3c8390ff97a23951e57c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e03e3b90f98a7ebe726e3eba737714a325f818b36dac9475d7267e180eafbf6
MD5 449228a30b35573c06b989f53aebc621
BLAKE2b-256 ecb4bc286817ad16f30815d6121ebc0e4ed4888fbbc8770ecb7f85c2eec287b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6886a0b930961b663676dd2a34c00d9964e044493b26724d87fc26cd64af25a7
MD5 860126e9bb9339de3e3ea215ffd98b75
BLAKE2b-256 05e9ce02bfe57e530420175cec88208fb7e5662ff102e9c5c27129aaf98349b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b53ea7bcbec758a3c6533e47150b2bf6321169e34a0a877c0cd1dc2e65a99a5d
MD5 327139b2b2067264497c1b7b3334f5a6
BLAKE2b-256 d42dab753453afb32970732e548213113ba3983cee816967dff42de88f46e699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2624797dc94122bfc85ebab1d8db385fd5f739e9df1f2906be7da1536150dde
MD5 cd49e4f64260fd63bba7a5d40cb097f4
BLAKE2b-256 bf3f6931dd4fa9cabff0ef7df0f64939ecb3a480e3d6302f4b0a116c95b3e239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b335102739ad93fd16cffd8aa226eb4c9f6119f8c54f05b8bf99ad9a0c853e5
MD5 c1b85ad9dfb73c188681ed5564e3027d
BLAKE2b-256 96de8d5e2d66b6255dda6e1b72340b674587e6af8be2b83f7edf1bccc368274f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fe0cc3bddd3b2e5ae558868b067d4bbb12b4304ea76e451867591e041a40ff0
MD5 13102b9eee92426dfdd3ae5b00adfe26
BLAKE2b-256 610b3b9ac654baa9a42a18cba58650a4ead6e1e8199346ac1cf4071d45e14ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 403ee42b970974c937834c0056acbd1dc61b0aa5e9be340c2074f978a8b1b287
MD5 d1fcf427eb3a010c3e757baaa88fd2e0
BLAKE2b-256 293b46019c35b5979424d556c2eb604dd6a996be656fe711a74e3391891d6e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hypercube_esn-2.0.1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 659fdde609396d807c38c4a7cf80293893bb2be59eb351f662d6f55ac1cbe0cb
MD5 d40941dda1b6ae1cdc2644e5289e3cce
BLAKE2b-256 43c57ed561a4c723f46f8aac05262597f9ecb5223e952e121289bb4bd6da469c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hypercube_esn-2.0.1-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

This release

2.0.1 This release

26 files

2.0.0

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