lilkm's picture
lilkm HF Staff
Upload reward model weights, train config and readme
704d7b2 verified
|
Raw
History Blame Contribute Delete
1.42 kB
---
datasets: lilkm/stackblocks_recap_all_for_vf
library_name: lerobot
license: apache-2.0
model_name: distributional_value_function
pipeline_tag: robotics
tags:
- reward-model
- robotics
- distributional_value_function
- lerobot
---
# Reward Model Card for distributional_value_function
<!-- Provide a quick summary of what the reward model is/does. -->
_Reward model type not recognized — please update this template._
This reward model has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
---
## How to Get Started with the Reward Model
### Train from scratch
```bash
lerobot-train \
--dataset.repo_id=${HF_USER}/<dataset> \
--reward_model.type=distributional_value_function \
--output_dir=outputs/train/<desired_reward_model_repo_id> \
--job_name=lerobot_reward_training \
--reward_model.device=cuda \
--reward_model.repo_id=${HF_USER}/<desired_reward_model_repo_id> \
--wandb.enable=true
```
_Writes checkpoints to `outputs/train/<desired_reward_model_repo_id>/checkpoints/`._
### Load the reward model in Python
```python
from lerobot.rewards import make_reward_model
reward_model = make_reward_model(pretrained_path="<hf_user>/<reward_model_repo_id>")
reward = reward_model.compute_reward(batch)
```
---
## Model Details
- **License:** apache-2.0