Skip to content

Commit 8137130

Browse files
Update README to v4.0.0 — GodelReplay + Two-Layer Architecture
- DOI badge updated to zenodo.19886315 (v4.0.0) - Latest Results: GodelReplay mem sweep table (sweet spot mem=200 +4.1%) - Validation table: GodelReplay + mem sweep rows added - Roadmap: Q2 2026 GodelReplay sprint marked complete - Repo structure: strategies/, experiments/, results/ documented Co-Authored-By: Rk/RNA (Claude Code) <noreply@anthropic.com>
1 parent 558d990 commit 8137130

1 file changed

Lines changed: 43 additions & 8 deletions

File tree

README.md

Lines changed: 43 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
**🎉 EXTERNALLY VALIDATED** — Our C-S-P philosophy independently confirmed by [SimpleMem (UNC/Berkeley, Jan 2026)](https://arxiv.org/abs/2601.02553)
88

99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10-
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.18048374.svg)](https://doi.org/10.5281/zenodo.18048374)
10+
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.19886315.svg)](https://doi.org/10.5281/zenodo.19886315)
1111
[![Whitepaper](https://zenodo.org/badge/DOI/10.5281/zenodo.18053612.svg)](https://doi.org/10.5281/zenodo.18053612)
1212
[![MACP & LEP](https://zenodo.org/badge/DOI/10.5281/zenodo.18504478.svg)](https://doi.org/10.5281/zenodo.18504478)
1313
[![GitHub Discussions](https://img.shields.io/github/discussions/creator35lwb-web/godelai)](https://github.com/creator35lwb-web/godelai/discussions)
@@ -22,7 +22,26 @@
2222

2323
---
2424

25-
## 🔥 Latest Result (April 2026)
25+
## 🔥 Latest Results (April 2026)
26+
27+
### GodelReplay — Two-Layer Architecture Validated
28+
29+
**GodelReplay = GodelPlugin (Fisher-scaled EWC-DR) + Avalanche Replay**
30+
31+
Validated on PermutedMNIST (10 tasks, seed=42). Memory buffer sweep across [50, 200, 500]:
32+
33+
| mem_size | Replay-only Forgetting | GodelReplay Forgetting | Delta |
34+
|----------|:----------------------:|:----------------------:|:-----:|
35+
| 50 | 0.3902 | 0.4038 | −3.5% *(below replay floor)* |
36+
| **200** | 0.2549 | 0.2443 | **+4.1%** ← sweet spot |
37+
| 500 | 0.1459 | 0.1419 | +2.8% |
38+
39+
GodelPlugin's complementarity peaks at **mem=200** — where replay provides partial coverage and EWC-DR fills the weight-identity gap. Below mem=50, Fisher estimates become unreliable (< 5 samples/task).
40+
41+
**Kaggle kernels:** [godelai-replay-permutedmnist-v1](https://www.kaggle.com/code/creator35lwb/godelai-replay-permutedmnist-v1) · [godelai-mem-sweep-v1](https://www.kaggle.com/code/creator35lwb/godelai-mem-sweep-v1)
42+
**Results:** [results/GODELREPLAY_PermutedMNIST_v1.md](results/GODELREPLAY_PermutedMNIST_v1.md) · [results/GODELREPLAY_MemSweep_v1.md](results/GODELREPLAY_MemSweep_v1.md)
43+
44+
---
2645

2746
### Conflict Data Proof — VERDICT: GO
2847

@@ -206,14 +225,20 @@ GodelAI is unique in AI history — it was **co-created across five AI models**:
206225
godelai/
207226
├── godelai/ # Core framework
208227
│ ├── agent.py # GodelAgent with T-Score & Sleep Protocol
228+
│ ├── avalanche_plugin.py # GodelPlugin (Avalanche SupervisedPlugin)
229+
│ ├── strategies/ # GodelReplay factory
230+
│ │ └── godel_replay.py # create_godel_replay_strategy()
209231
│ ├── core/ # GodelaiAgent implementation
210232
│ ├── models/ # Model architectures
211233
│ └── reg/ # EWC and regularization
234+
├── experiments/ # Benchmark experiment scripts
235+
│ ├── permutedmnist_godelreplay.py # 4-strategy comparison
236+
│ └── permutedmnist_mem_sweep.py # Buffer size sweep [50,200,500]
237+
├── results/ # Validated benchmark results
238+
│ ├── GODELREPLAY_PermutedMNIST_v1.md
239+
│ └── GODELREPLAY_MemSweep_v1.md
212240
├── datasets/ # Training & test datasets
213-
│ ├── conflict/ # Conflict data for C-S-P activation
214-
│ └── wisdom/ # YSenseAI integration (future)
215241
├── notebooks/ # Interactive demos
216-
│ └── GodelAI_EWC_Demo.ipynb # Mnemosyne Colab
217242
├── tests/ # Test suite
218243
├── docs/ # Documentation
219244
├── whitepaper/ # Technical whitepaper
@@ -228,9 +253,11 @@ godelai/
228253
| T-Score Formula | Correctly measures gradient diversity | ✅ Verified |
229254
| Sleep Protocol | Triggers at T < 0.3 | ✅ Verified |
230255
| EWC Integration | 21.6% forgetting reduction | ✅ Verified |
231-
| **Fisher Scaling + EWC** | **82.8% forgetting reduction on conflict data** | **NEW RECORD** |
256+
| **Fisher Scaling + EWC** | **82.8% forgetting reduction on conflict data** | **Verified** |
232257
| Cross-Platform | 0.0000 variance (Manus + Claude + Colab) | ✅ Verified |
233258
| **External Validation** | **C-S-P confirmed by SimpleMem paper** | **✅ Verified** |
259+
| **GodelReplay (PermutedMNIST)** | **+0.87% forgetting reduction vs Replay-only (mem=500)** | **✅ Verified** |
260+
| **GodelReplay Mem Sweep** | **Sweet spot: +4.1% at mem=200; boundary at mem=50** | **✅ Verified** |
234261
| Training Improvement | No improvement over baseline | ❌ Not proven |
235262
| Transformer Support | Not yet tested | ⏳ Pending |
236263

@@ -256,9 +283,17 @@ godelai/
256283
- 🔄 YSenseAI integration research
257284
- 🔄 Community engagement
258285

259-
### Q2-Q4 2026
286+
### Q2 2026: GodelReplay Sprint ✅
287+
-**GodelPlugin** — Avalanche SupervisedPlugin (Fisher-scaled EWC-DR + T-Score)
288+
-**GodelReplay**`godel_replay.py` factory: Replay + GodelPlugin combined strategy
289+
-**PermutedMNIST benchmark** — 4-strategy comparison; HYPOTHESIS CONFIRMED
290+
-**Memory buffer sweep**[50, 200, 500]; sweet spot at mem=200 (+4.1%)
291+
-**Two-Layer Architecture** — GodelReplay (training) + GodelAI-Lite (inference) validated
292+
-**Zenodo v4.0.0** — DOI [10.5281/zenodo.19886315](https://doi.org/10.5281/zenodo.19886315)
293+
294+
### Q3-Q4 2026
260295
- 📋 Conflict data benchmarks
261-
- 📋 Research paper (focus: data requirements for C-S-P)
296+
- 📋 Research paper (focus: data requirements for C-S-P + Two-Layer Architecture)
262297
- 📋 Multi-modal data experiments
263298
- 📋 YSenseAI production integration
264299

0 commit comments

Comments
 (0)