mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-13 17:52:36 +02:00
12 lines
273 B
Rust
12 lines
273 B
Rust
|
|
//! Memory Consolidation Module
|
||
|
|
//!
|
||
|
|
//! Implements sleep-inspired memory consolidation:
|
||
|
|
//! - Decay weak memories
|
||
|
|
//! - Promote emotional/important memories
|
||
|
|
//! - Generate embeddings
|
||
|
|
//! - Prune very weak memories (optional)
|
||
|
|
|
||
|
|
mod sleep;
|
||
|
|
|
||
|
|
pub use sleep::SleepConsolidation;
|