Back to Reinforcement Learning Mind Map
中文·English
🎮 Reinforcement LearningID: long-term-retention

Long-Term Retention RL

长效留存延迟奖励
🎯Core Definition
Long-term retention RL models D1/D7 retention and LTV as delayed rewards: the true return of today's action (e.g., a recommended item) is observed days or weeks later, so a discount factor γ\gamma is introduced to model cross-period value, with long-term objective J=E[tγtrt]J = \mathbb{E}[\sum_{t} \gamma^t r_t] — small γ\gamma favors the near term, large γ\gamma the far term, trading off against short-term metrics (e.g., instant CTR). Delayed rewards create a credit-assignment problem: returns are hard to attribute to specific rounds/actions; common fixes include temporal decomposition, surrogate rewards, and sequential-decision frameworks.
💡Use Cases
retention optimization for short-video/social/gaming apps, LTV modeling for subscriptions and ads, fixing the "CTR up but retention down" paradox in recsys; interviews ask why optimizing CTR alone hurts the long-term experience and how discounting/delayed rewards fix it.
Key Problems Solved
purely short-term objectives (CTR) invite clickbait that destroys long-term retention; treating retention as a delayed reward discounted by γ\gamma makes the policy trade some instant metrics for higher long-term value, while TD (bootstrapped) or Monte-Carlo attribution reduces the variance of delayed feedback — aligning short- and long-term metrics.
🎯5 High-Frequency Exam Points
1
Why do delayed rewards make credit assignment hard, and what role does the discount γ\gamma play?
2
Formula: J=E[tγtrt]J = \mathbb{E}[\sum_t \gamma^t r_t] — what business objectives do γ0\gamma \to 0 and γ1\gamma \to 1 correspond to?
3
Why does optimizing CTR alone hurt retention, and how do you design rewards for both short- and long-term?
4
Attributing delayed feedback: TD bootstrapping vs MC, and how surrogate rewards speed up learning?
5
How do you plug retention as delayed feedback into bandits (delayed-reward bandits) or RL?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Long-Term Retention RL"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardSlate / Combinatorial BanditNext CardRL with Verifiable Rewards

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL