Hyperdimensional symbolic residual compression for neural network weights
Project description
Hyper Glyph
Hyperdimensional symbolic residual compression for neural network weights.
Package name:
hyperglyph-codec
Project name: Hyper Glyph
Install:pip install hyperglyph-codec
Import:from hyperglyph import HyperGlyphCodec
Hyper Glyph combines:
- Block-level tensor compression for NumPy arrays and neural network weights.
- Symbolic prototype assignment to represent repeated weight patterns compactly.
- Sparse residual repair to preserve reconstruction fidelity after prototype decoding.
- Configurable compression controls for block size, prototype count, residual size, and tensor filtering.
- State dict compression for model-like parameter dictionaries.
- Optional PyTorch support for loading, compressing, restoring, and benchmarking
.ptstate dicts. .hwzserialization for saving compressed models as portable archives.- Compression reports with size ratio, tensor counts, and reconstruction error metrics.
- A small CLI for compressing, decompressing, inspecting, and benchmarking model archives.
- Typed Python API designed for research, experimentation, and extension.
Before / After
import numpy as np
from hyperglyph import HyperGlyphCodec, HyperGlyphConfig
state_dict = {
"layer.weight": np.arange(1024, dtype=np.float32).reshape(32, 32),
}
config = HyperGlyphConfig(
block_size=16,
n_prototypes=32,
residual_k=4,
)
codec = HyperGlyphCodec(config)
compressed = codec.compress_state_dict(state_dict)
restored = codec.decompress_state_dict(compressed)
report = codec.report(compressed, state_dict, restored)
print(report)
Example output:
CompressionReport(
original_bytes=4096,
compressed_bytes=...,
compression_ratio=...,
tensors_compressed=1,
tensors_skipped=0,
total_mse=...,
total_mae=...,
max_abs_error=...
)
That is the core job: encode large weight tensors as reusable symbolic prototypes plus a small residual correction, then report the size and reconstruction tradeoff.
Hyper Glyph v0.1.0 is an experimental research codec. It is intended for testing ideas around hyperdimensional and symbolic weight compression rather than guaranteed production compression.
Why Hyperdimensional Weight Compression?
Neural network weights often contain repeated local structure, approximate patterns, and redundancy that can be represented more compactly than raw floating-point tensors:
Weight tensors
-> Split into fixed-size blocks
-> Learn reusable prototype blocks
-> Assign each block to a prototype
-> Store per-block scales
-> Store sparse top-k residual corrections
-> Save compressed archive
-> Restore approximate tensors
-> Report compression and reconstruction metrics
Hyper Glyph is designed for experiments where you want to inspect that
tradeoff directly:
- Large weight matrices that can be split into repeated local blocks.
- Prototype-based compression where blocks share learned representatives.
- Sparse residual repair where only the largest reconstruction corrections are stored.
- Approximate reconstruction with measurable MSE, MAE, and max absolute error.
- State dict workflows that match common PyTorch model storage patterns.
- Portable archive output for saving and inspecting compressed runs.
Why Not Just Quantization?
Quantization changes the numeric precision of individual weights. Hyper Glyph uses a different representation: each tensor block is mapped to a learned prototype, scaled, and repaired with a sparse residual.
That makes Hyper Glyph useful for experimenting with symbolic and hyperdimensional compression ideas, not as a drop-in replacement for mature quantization, pruning, or production model compression toolchains.
Architecture
Input weights
- NumPy arrays
- PyTorch state_dict values
|
v
Compression
- tensor filtering
- block splitting
- prototype learning
- prototype assignment
- scale calculation
- sparse residual encoding
|
v
CompressedModel
- compressed tensors
- shapes
- prototype ids
- scales
- residuals
- prototype matrices
- codec metadata
|
v
Decompression and report
- reconstructed tensors
- original/compressed byte estimates
- compression ratio
- MSE / MAE / max error
Install
pip install hyperglyph-codec
For PyTorch state dict support:
pip install "hyperglyph-codec[torch]"
For documentation dependencies:
pip install "hyperglyph-codec[docs]"
For development:
pip install -e ".[dev,torch,docs]"
pytest
python -m build
Quick Start
Compress a NumPy State Dict
import numpy as np
from hyperglyph import HyperGlyphCodec, HyperGlyphConfig
state_dict = {
"weight": np.arange(256, dtype=np.float32).reshape(16, 16),
}
config = HyperGlyphConfig(
block_size=8,
n_prototypes=8,
residual_k=2,
)
codec = HyperGlyphCodec(config)
compressed = codec.compress_state_dict(state_dict)
restored = codec.decompress_state_dict(compressed)
print(restored["weight"].shape)
Compress a PyTorch Model
import torch
from hyperglyph import HyperGlyphCodec, HyperGlyphConfig
model = torch.nn.Sequential(
torch.nn.Linear(32, 32),
torch.nn.ReLU(),
torch.nn.Linear(32, 8),
)
config = HyperGlyphConfig(
block_size=16,
n_prototypes=16,
residual_k=4,
)
codec = HyperGlyphCodec(config)
compressed = codec.compress_state_dict(model.state_dict())
restored = codec.decompress_state_dict(compressed)
print(f"Compressed tensors: {len(compressed.tensors)}")
print(f"Restored keys: {sorted(restored)}")
Save and Load .hwz Archives
from hyperglyph import load_compressed, save_compressed
save_compressed(compressed, "model.hwz")
loaded = load_compressed("model.hwz")
restored = codec.decompress_state_dict(loaded)
Generate a Report
report = codec.report(
compressed_model=compressed,
original_state_dict=state_dict,
restored_state_dict=restored,
)
print(report.compression_ratio)
print(report.total_mse)
print(report.max_abs_error)
CLI
Compress a PyTorch state dict into a .hwz archive:
hyperglyph compress model.pt model.hwz
Tune compression settings:
hyperglyph compress model.pt model.hwz \
--block-size 16 \
--hdc-dim 4096 \
--n-buckets 16 \
--n-prototypes 128 \
--residual-k 8 \
--min-tensor-size 256
Restore a compressed archive back to a PyTorch state dict:
hyperglyph decompress model.hwz restored.pt
Inspect archive metadata:
hyperglyph inspect model.hwz
Benchmark compression and reconstruction:
hyperglyph benchmark model.pt
Benchmark Example
A small practical benchmark is enough to see the current codec behavior:
hyperglyph benchmark model.pt
Example report fields:
original_bytes
compressed_bytes
compression_ratio
tensors_compressed
tensors_skipped
total_mse
total_mae
max_abs_error
The current package focuses on transparent compression experiments rather than claiming universal size reductions. Compare the restored model against your own accuracy, latency, and reconstruction thresholds.
Main Features
1. Configurable Codec
Tune the compression shape with one dataclass:
from hyperglyph import HyperGlyphConfig
config = HyperGlyphConfig(
hdc_dim=4096,
block_size=16,
n_buckets=16,
n_prototypes=128,
residual_k=8,
seed=42,
min_tensor_size=256,
compress_bias=False,
)
2. Array Compression
Compress and reconstruct a single NumPy array:
import numpy as np
from hyperglyph import HyperGlyphCodec
codec = HyperGlyphCodec()
array = np.random.randn(64, 64).astype("float32")
compressed = codec.compress_array("layer.weight", array)
restored = codec.decompress_array(compressed)
3. State Dict Compression
Compress dictionary-style model weights:
compressed = codec.compress_state_dict(state_dict)
restored = codec.decompress_state_dict(compressed)
By default, small tensors and bias tensors are skipped. Set min_tensor_size
and compress_bias in HyperGlyphConfig to change that behavior.
4. Sparse Residual Repair
Each block is reconstructed from a prototype and scale, then corrected with a top-k sparse residual:
block ~= prototype[prototype_id] * scale + sparse_residual
Increase residual_k for better reconstruction fidelity, or reduce it for a
smaller compressed representation.
5. Serialization
Save compressed models as .hwz zip archives:
from hyperglyph import load_compressed, save_compressed
save_compressed(compressed, "model.hwz")
loaded = load_compressed("model.hwz")
6. PyTorch Adapter
Install the torch extra to convert PyTorch tensors into compressed Hyper Glyph
models:
from hyperglyph import compress_state_dict, decompress_state_dict
compressed = compress_state_dict(model.state_dict())
restored = decompress_state_dict(compressed, reference_state_dict=model.state_dict())
7. Compression Metrics
Measure the compression and reconstruction tradeoff:
report = codec.report(compressed, state_dict, restored)
print(report.original_bytes)
print(report.compressed_bytes)
print(report.compression_ratio)
print(report.total_mse)
print(report.total_mae)
print(report.max_abs_error)
Configuration
from hyperglyph import HyperGlyphConfig
config = HyperGlyphConfig(
hdc_dim=4096,
block_size=16,
n_buckets=16,
n_prototypes=128,
residual_k=8,
seed=42,
min_tensor_size=256,
compress_bias=False,
dtype="float32",
device="cpu",
)
Key settings:
block_sizecontrols how many flattened weights are grouped together.n_prototypescontrols how many reusable block representatives are learned.residual_kcontrols how many residual correction values are stored per block.min_tensor_sizeskips tensors too small to benefit from compression.compress_biasenables compression for bias tensors, which are skipped by default.seedmakes prototype selection deterministic.
Examples
import numpy as np
from hyperglyph import HyperGlyphCodec, HyperGlyphConfig
state_dict = {
"encoder.weight": np.random.randn(128, 128).astype("float32"),
"decoder.weight": np.random.randn(128, 64).astype("float32"),
}
codec = HyperGlyphCodec(
HyperGlyphConfig(
block_size=16,
n_prototypes=64,
residual_k=8,
)
)
compressed = codec.compress_state_dict(state_dict)
restored = codec.decompress_state_dict(compressed)
report = codec.report(compressed, state_dict, restored)
print(report)
hyperglyph compress model.pt model.hwz
hyperglyph inspect model.hwz
hyperglyph benchmark model.pt
Project Structure
src/hyperglyph/
__init__.py # Public API
blocks.py # Tensor flattening, block splitting, shape restore
cli.py # Command-line interface
codec.py # HyperGlyphCodec and compressed dataclasses
config.py # HyperGlyphConfig
exceptions.py # Package exceptions
hdc.py # Hyperdimensional vector helpers
metrics.py # Size and reconstruction metrics
prototypes.py # Prototype learning and assignment
residual.py # Sparse residual encoding and repair
serialization.py # .hwz save/load helpers
torch_adapter.py # Optional PyTorch integration
py.typed # Typing marker
tests/
test_*.py # Unit tests
docs/
algorithm.md # Algorithm overview
api.md # API notes
cli.md # CLI examples
index.md # Documentation home
roadmap.md # Planned work
examples/
compress_mlp.py # PyTorch MLP compression example
compress_state_dict.py # NumPy state dict compression example
mnist_demo.py # MNIST-oriented demo
hyperglyph.png # Project logo
pyproject.toml # Package metadata and dependencies
CHANGELOG.md # Release history
CONTRIBUTING.md # Contribution guide
LICENSE # MIT license
Development
# Install with dev, PyTorch, and docs extras
pip install -e ".[dev,torch,docs]"
# Run tests
pytest
# Run linting
ruff check .
# Type-check package code
mypy
# Build package
python -m build
License
MIT
Contributing
Contributions are welcome. Open an issue or pull request with the model shape, codec configuration, expected compression behavior, reconstruction metrics, and any accuracy checks you used.
Citation
If you use Hyper Glyph in research, please cite:
@software{HyperGlyph2026,
title={Hyper Glyph: Hyperdimensional Symbolic Residual Compression for Neural Network Weights},
author={Robert McMenemy},
year={2026},
version={0.1.0},
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hyperglyph_codec-0.1.0.tar.gz.
File metadata
- Download URL: hyperglyph_codec-0.1.0.tar.gz
- Upload date:
- Size: 947.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4243214a7faaaaee4298d203ce4244453a8c02910a5a8b7cfb9b44bed9fd479b
|
|
| MD5 |
bf5b0a9420793190128d517e659e666b
|
|
| BLAKE2b-256 |
15100bd9f188f8e5be41ccb579381d2f2f1b5ac23133c4b4906b5c8e5599a514
|
Provenance
The following attestation bundles were made for hyperglyph_codec-0.1.0.tar.gz:
Publisher:
publish.yml on Arkay92/Hyper-Glyph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hyperglyph_codec-0.1.0.tar.gz -
Subject digest:
4243214a7faaaaee4298d203ce4244453a8c02910a5a8b7cfb9b44bed9fd479b - Sigstore transparency entry: 1978743206
- Sigstore integration time:
-
Permalink:
Arkay92/Hyper-Glyph@f57a2435856695ceda5504f6ebff0bba1185510a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Arkay92
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f57a2435856695ceda5504f6ebff0bba1185510a -
Trigger Event:
release
-
Statement type:
File details
Details for the file hyperglyph_codec-0.1.0-py3-none-any.whl.
File metadata
- Download URL: hyperglyph_codec-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25e3e78628af5bb735046443cf0fec1d6db4fef0de24436ec0f4e05c9df5efaa
|
|
| MD5 |
ebabfb84db0d4080f8daf738c00b27ec
|
|
| BLAKE2b-256 |
b5a76a3dd72ba903b82e41234ca79859bdd896b33687ff6f60be31818580f94b
|
Provenance
The following attestation bundles were made for hyperglyph_codec-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on Arkay92/Hyper-Glyph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hyperglyph_codec-0.1.0-py3-none-any.whl -
Subject digest:
25e3e78628af5bb735046443cf0fec1d6db4fef0de24436ec0f4e05c9df5efaa - Sigstore transparency entry: 1978743287
- Sigstore integration time:
-
Permalink:
Arkay92/Hyper-Glyph@f57a2435856695ceda5504f6ebff0bba1185510a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Arkay92
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f57a2435856695ceda5504f6ebff0bba1185510a -
Trigger Event:
release
-
Statement type: