You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds benchmark visuals, governance metadata, and model card
Improves documentation and project transparency by introducing
generated benchmark charts and an illustrative circadian dynamics GIF
for the README. Establishes ownership and governance metadata,
including a model card detailing evaluation metrics and limitations.
Supports reproducible results and clearer project governance for users
and contributors.
- direct comparison against traditional backpropagation and traditional predictive coding
8
+
Circadian Predictive Coding is a research-first repository focused on biologically inspired learning where models adapt their own structure over wake and sleep cycles.
9
+
10
+
## Why This Repo
11
+
12
+
This project is built around one central idea:
13
+
14
+
-**Circadian Predictive Coding** should be compared rigorously against
15
+
- traditional backpropagation
16
+
- traditional predictive coding
17
+
18
+
The baseline models stay in the repo as stable references, while circadian behavior is the primary innovation surface.
19
+
20
+
## Circadian Loop
8
21
9
22
The circadian model is the primary focus of this project. Backprop and predictive coding baselines are kept to ensure fair comparison and reproducible evaluation.
10
23
24
+
```mermaid
25
+
flowchart LR
26
+
A[Wake Training] --> B[Chemical Accumulation]
27
+
B --> C[Plasticity Gating]
28
+
C --> D{Sleep Trigger}
29
+
D -- No --> A
30
+
D -- Yes --> E[Sleep Consolidation]
31
+
E --> F[Split / Prune Adaptation]
32
+
F --> G[Replay + Homeostasis]
33
+
G --> H[Optional Rollback Guard]
34
+
H --> A
35
+
```
36
+
11
37
## Core Idea
12
38
13
39
The circadian algorithm models wake and sleep phases:
@@ -25,6 +51,36 @@ This lets model capacity adapt over time instead of staying fixed.
25
51
- Function-preserving split behavior and guarded sleep rollback
26
52
- Multi-seed benchmark runner with JSON/CSV output
0 commit comments