Views
No views yet
1.4 MB model | Constant memory | Perfect generalization to 2000× training length
| Metric | Manifold GFN (1.4 MB) | MicroGPT Transformer |
|---|---|---|
| Model Size | 1.4 MB | ~2 MB |
| Training Length | 20 tokens | 20 tokens |
| Test Accuracy @ L=20 | 100% | 90% |
| Test Accuracy @ L=100 | 100% | 50% |
| Test Accuracy @ L=1,000 | 100% | 52% |
| Test Accuracy @ L=10,000 | 100% | OOM (Out of Memory) |
| Test Accuracy @ L=100,000 | 100% | OOM (Out of Memory) |
| VRAM @ L=100 | 30 MB | 85 MB |
| VRAM @ L=10,000 | 60 MB | >8 GB (quadratic) |
| Memory Complexity | O(1) | O(N²) |
1 0 1 1 ...)pip install gfn1# Clone this repository
2git clone https://huggingface.co/Manifold-Labs/manifold-gfn-xor-128d
3cd manifold-gfn-xor-128d1# Test on sequences of length 100 (5 samples)
2python inference.py --length 100 --samples 5
3
4# Test on longer sequences (e.g., 1000 tokens)
5python inference.py --length 1000 --samples 3[*] Testing Parity/XOR (Length: 100)
------------------------------------------------------------
Seq 1: ✅ PASS
Input: 00110000000101110110...
Target: 00100000000110100100...
Pred: 00100000000110100100...
------------------------------------------------------------
Total Success: 5/5