Scale Random Network Distillation intrinsic rewards with running discounted-return statistics for stable exploration bonuses.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add VectorSpaceLab/AREX-Skill --skill rnd_intrinsic_reward_scaling --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rnd Intrinsic Reward Scaling?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vectorspacelab-rnd-intrinsic-reward-scaling)More formats (shields.io, HTML) on the badges page.
---
name: rnd_intrinsic_reward_scaling
description: Scale Random Network Distillation intrinsic rewards with running discounted-return statistics for stable exploration bonuses.
---
# RND Intrinsic Reward Scaling
Use this skill when raw RND prediction errors need to become an intrinsic reward stream for policy optimization. It preserves raw errors for diagnostics while dividing rewards by a running estimate of intrinsic-return standard deviation. Do not use it to change the predictor loss itself.
## Inputs
- Raw RND prediction-error sequence.
- Intrinsic discount factor, usually `gamma_I`.
- Optional running return statistics.
## Outputs
- Scaled intrinsic rewards.
- Discounted intrinsic returns.
- Updated running scale statistics.
## Workflow
1. Convert raw errors into discounted intrinsic returns.
2. Update running mean/variance over those returns.
3. Divide each raw error by `sqrt(var + eps)`.
4. Keep both raw and scaled values in recovery logs.
## Validation
Run `python scripts/reward_scaling.py --self-test`. The validation checks finite outputs, discounted-return ordering, and positive scaling behavior.
## Limitations
This skill does not compute policy gradients or PPO advantages. It only implements the RND reward-scale contract from the paper.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!