pub fn recoverability(age_hours: f64, access_count: u64) -> f32Expand description
recency × retrieval-hit-rate — the v0 recoverability stand-in for
EMBER’s learned retention score.
- recency decays with a 1-week half-life:
0.5^(age / 168h), in(0, 1]. - hit-rate is the smoothed access frequency
(access + 1) / (access + 1 + 5), in(0, 1)— monotonically increasing inaccess_count, and non-zero even ataccess = 0.