feat(rewards): add VITA reward model integration with adaptation and outer-loop training#3269
Open
0xPraedico wants to merge 1 commit intohuggingface:refactor/reward-modelsfrom
Open
Conversation
…learning outer loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Title
feat(rewards): add VITA reward model integration with adaptation and outer-loop training
Type / Scope
Summary / Motivation
This PR adds VITA as a first-class reward model under the new reward-model foundation in
src/lerobot/rewards/.Implementation is aligned with the core ideas from the VITA paper: arXiv:2506.10085.
It implements the paper-aligned core (multimodal latent,
P_K/P_V/P_Q, fast-weight adaptation, sequential test-time updates, and a reward head), and also introduces an initial meta-learning outer-loop training path while keeping the backbone pluggable and lightweight.The goal is to provide a clean, mergeable baseline integration consistent with LeRobot’s reward architecture.
Related issues
#3143
What changed
src/lerobot/rewards/vita/configuration_vita.pysrc/lerobot/rewards/vita/adaptation.pysrc/lerobot/rewards/vita/modeling_vita.pysrc/lerobot/rewards/vita/processor_vita.pysrc/lerobot/rewards/vita/__init__.pysrc/lerobot/rewards/__init__.pysrc/lerobot/rewards/factory.pytests/rewards/test_vita_reward.pytests/rewards/test_reward_model_base.pydocs/source/vita.mdxdocs/source/_toctree.ymlHow was this tested
Ran:
Next steps (future work)
To get closer to a full paper-level VITA implementation, the following are planned:
Meta-learning refinement
Native VLM backbone integration
Paper-aligned sampling strategy
VitaConfigand dedicated tests for sampling behavior.Evaluation and benchmarks