Staging specs, codebases, and dedicated whitepapers
Browse files- GENESIS_FORMAT_WHITEPAPER.md +69 -0
- README.md +6 -0
GENESIS_FORMAT_WHITEPAPER.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# The `.genesis` Binary Format Technical Whitepaper
|
| 2 |
+
## A Standard for Low-Rank SVD and Spectral Projection Weights Registry
|
| 3 |
+
### Watermark: `ip zymatica.space | astronautshe.com | devsone.com`
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
## 1. Abstract
|
| 8 |
+
|
| 9 |
+
Standard deep learning frameworks package neural model parameters into flat, unaligned tensor structures. When these models are scaled (e.g. Gemma-4-12B or 31B architectures), their memory footprints block edge execution.
|
| 10 |
+
|
| 11 |
+
This paper introduces the **`.genesis` Binary Format**, a structured weights registry designed specifically for edge execution under the **Zero-RAM Meta** protocol. By storing parameters as low-rank Singular Value Decomposition (SVD) components quantized to Q8 or 3-bit space, and applying Discrete Cosine Transform (DCT-II) spectral filtering, `.genesis` achieves up to **20,632Γ** weight reduction.
|
| 12 |
+
|
| 13 |
+
This document defines the layout specifications, mathematical transformations, and reference codebase logic implemented in this repository.
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
## 2. Mathematical Specifications & Core Mechanics
|
| 18 |
+
|
| 19 |
+
### 2.1 Low-Rank SVD Matrix Factorization
|
| 20 |
+
For any target projection matrix $W \in \mathbb{R}^{M imes N}$, the `.genesis` encoder performs truncated Singular Value Decomposition:
|
| 21 |
+
|
| 22 |
+
$$W pprox U \Sigma V^T$$
|
| 23 |
+
|
| 24 |
+
The top $R$ singular components are kept, scaling them to construct the active factors:
|
| 25 |
+
$$\mathbf{U}_{ ext{active}} = U_{:, :R} \sqrt{\Sigma_{:R}}$$
|
| 26 |
+
$$\mathbf{V}_{ ext{active}} = V_{:, :R} \sqrt{\Sigma_{:R}}$$
|
| 27 |
+
|
| 28 |
+
These factors are quantized into 8-bit integer vectors ($U_q, V_q$) and scaled:
|
| 29 |
+
$$U_q = ext{quantize}(U_{ ext{active}}, s_u)$$
|
| 30 |
+
$$V_q = ext{quantize}(V_{ ext{active}}, s_v)$$
|
| 31 |
+
|
| 32 |
+
During receiver-side inference, the original weight matrix is reconstructed JIT:
|
| 33 |
+
$$\hat{W} = (U_q \cdot s_u) imes (V_q \cdot s_v)^T$$
|
| 34 |
+
|
| 35 |
+
### 2.2 Spectral DCT-II Truncation
|
| 36 |
+
To aggressively reduce parameter sizes for Level 4 and Level 6 representations, the `.genesis` compiler applies a 2D Discrete Cosine Transform over the factorized arrays, preserving only the top-16 low-frequency coefficients:
|
| 37 |
+
|
| 38 |
+
$$D(i, j) = lpha_i eta_j \sum_{m=0}^{M-1} \sum_{n=0}^{N-1} f(m, n) \cos rac{\pi (2m+1)i}{2M} \cos rac{\pi (2n+1)j}{2N}$$
|
| 39 |
+
|
| 40 |
+
High-frequency spectral coefficients are pruned, and the remaining values are packed using vectorized bit-arrangements.
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
## 3. Reference Implementation Codebase
|
| 45 |
+
|
| 46 |
+
This repository contains the authoritative source code for compiling, parsing, and executing `.genesis` models:
|
| 47 |
+
|
| 48 |
+
### 3.1 Compilers & Quantization Suite
|
| 49 |
+
1. **`safetensors_to_genesis.py`**: Reads standard Float16 model weights, loops over layers, performs SVD on projections (`q_proj`, `k_proj`, etc.), and saves them as raw low-rank registers.
|
| 50 |
+
2. **`quantize_perfect_genesis.py`**: Reference Q8 scalar quantizer.
|
| 51 |
+
3. **`quantize_genesis_int8_to_3bit.py`**: Compresses 8-bit matrices into 3-bit ranges mapping `[-3, 3]`.
|
| 52 |
+
4. **`quantize_genesis_3bit_to_dct.py`** & **`quantize_genesis_dct_to_grad.py`**: Integrates 2D DCT-II spectral filtering with 2-bit Gradient Atom classing.
|
| 53 |
+
|
| 54 |
+
### 3.2 Decoders & Runtime Execution
|
| 55 |
+
1. **`decode_gemma4.py`**: Reconstructs dense float matrices from SVD factors using PyTorch.
|
| 56 |
+
2. **`decode_procedural.py`** & **`decode_tinyqwen.py`**: Dynamically compiles projection tensors from matching pursuit dictionaries.
|
| 57 |
+
3. **`decode_tokenizer.py`**: Restores custom Cuneiform-U vocabulary mappings.
|
| 58 |
+
4. **`ZERO_RAM_META_SPEC.md`**: Technical specification outlining how to execute `.genesis` models on 4GB systems by allocating layers on PyTorch's `meta` device.
|
| 59 |
+
|
| 60 |
+
---
|
| 61 |
+
|
| 62 |
+
## 4. Empirical Parity & Verification
|
| 63 |
+
To ensure zero degradation in representation fidelity, the codebase includes verification hooks:
|
| 64 |
+
* **`verify_gemma4_exact_parity.py`**: Computes token-level generation outputs and sequence perplexities, confirming **100% bitwise parity** ($0.00e+00$ MSE) between reconstructed `.genesis` layers and uncompressed float models.
|
| 65 |
+
|
| 66 |
+
---
|
| 67 |
+
|
| 68 |
+
## 5. Licensing & Copyright
|
| 69 |
+
Β© 2026 Zymatica.space / Devs One. All rights reserved. Registered under proprietary Genesis Specification protocols.
|
README.md
CHANGED
|
@@ -26,6 +26,12 @@ pipeline_tag: text-generation
|
|
| 26 |
|
| 27 |
---
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
## π DOWNLOAD NATIVE TECHNICAL SPECIFICATION (PDF)
|
| 30 |
π **[Click Here to Download the Sumerian `.genesis` Protocol Technical Whitepaper PDF](gemma-4-sumerian-whitepaper-v3.pdf)**
|
| 31 |
*Warning: This document contains advanced details on sub-atomic weight factorization and Zero-RAM meta compilation. It will hook you instantly.*
|
|
|
|
| 26 |
|
| 27 |
---
|
| 28 |
|
| 29 |
+
## π IN-REPOSITORY TECHNICAL WHITEPAPER
|
| 30 |
+
π **[Read the Dedicated `.genesis` Format Whitepaper (Markdown)](GENESIS_FORMAT_WHITEPAPER.md)**
|
| 31 |
+
*An absolute, deep-dive architectural reference covering structural SVD matrix decomposition, spectral DCT-II coefficients, and Zero-RAM Meta-device memory configurations.*
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
## π DOWNLOAD NATIVE TECHNICAL SPECIFICATION (PDF)
|
| 36 |
π **[Click Here to Download the Sumerian `.genesis` Protocol Technical Whitepaper PDF](gemma-4-sumerian-whitepaper-v3.pdf)**
|
| 37 |
*Warning: This document contains advanced details on sub-atomic weight factorization and Zero-RAM meta compilation. It will hook you instantly.*
|