Phase 7.3: Prioritised Episodic Replay Buffer — architecture & design #267
web3guru888
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🔄 Phase 7.3: Prioritised Episodic Replay Buffer
Phase 7.3 introduces a prioritised episodic replay buffer (
PrioritisedReplayBuffer) that stores past training episodes and interleaves them with live experience during STDP updates. This is the third sub-phase of Phase 7's continual-learning stack.Why Replay?
Buffer variants
PrioritisedReplayBufferUniformReplayBufferIS Correction
P(i) = p_i^α / Σ p_j^α → w_i = (N·P(i))^{-β} / max(w)
β annealed 0.4 → 1.0 over training.
SLEEP_PHASE hook order (step 8 added)
Prometheus Metrics (5)
asi_replay_buffer_size(Gauge)asi_replay_buffer_capacity(Gauge)asi_replay_episodes_added_total(Counter)asi_replay_episodes_sampled_total(Counter)asi_replay_mean_priority(Gauge)Open Questions
All reactions