Downloads · 30 days
0
byeonghyunpak/SERF-VLA
SERF-VLA is a robotics model from byeonghyunpak. Use it for the robotics task on the model card, and read the license before you ship it in a product.
Downloads · 30 days
0
Access
Public
Updated Jul 2, 2026
Repo size
32.6 GB
Likes
0
Public
Click a slice to open those files.
Other32.6 GB · 100%
From the Hugging Face model README
Official checkpoint release for:
SERF: Spatiotemporal Environment and Robot Feature Map for Long-Horizon Mobile Manipulation
This repository contains PI0.5 baseline and SERF-VLA policy checkpoints for BEHAVIOR-1K experiments.
It includes:
These checkpoints are for the policy learning component only. The SERF mapping component is not included in this repository.
All released checkpoints were initialized from the PI0.5 checkpoint pretrained on 50 BEHAVIOR-1K tasks:
This checkpoint was released by the first-place solution of the 2025 BEHAVIOR Challenge and was used as the initialization for both the PI0.5 baseline checkpoints and the SERF-VLA checkpoints in this repository.
| Folder | Model | Representation | Task |
|---|---|---|---|
pi_behavior_b1k_fast--50t_lora--task-0021 | PI0.5 baseline | 2D image observation | 21 |
pi_behavior_b1k_fast--50t_lora--task-0022 | PI0.5 baseline | 2D image observation | 22 |
pi_behavior_b1k_fast--50t_lora--task-0026 | PI0.5 baseline | 2D image observation | 26 |
pi_serf_behavior_b1k_fast--4d_env_robot_feat_map--50t_lora--task-0021 | SERF-VLA | 4D environment and robot feature map | 21 |
pi_serf_behavior_b1k_fast--4d_env_robot_feat_map--50t_lora--task-0022 | SERF-VLA | 4D environment and robot feature map | 22 |
pi_serf_behavior_b1k_fast--4d_env_robot_feat_map--50t_lora--task-0026 | SERF-VLA | 4D environment and robot feature map | 26 |
Each checkpoint follows the original policy checkpoint structure:
checkpoint_name/
├── assets/
└── params/
Download all checkpoints with huggingface_hub:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="byeonghyunpak/SERF-VLA",
repo_type="model",
local_dir="checkpoints/serf-vla-behavior-b1k",
)
To download a specific checkpoint folder only:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="byeonghyunpak/SERF-VLA",
repo_type="model",
local_dir="checkpoints/serf-vla-behavior-b1k",
allow_patterns=[
"pi_serf_behavior_b1k_fast--4d_env_robot_feat_map--50t_lora--task-0021/**"
],
)
For installation, data preparation, training, and evaluation instructions, please refer to the official code repository:
https://github.com/ExistentialRobotics/SERF-VLA
BEHAVIOR-1K evaluation is non-deterministic; results can differ across repeated runs due to variability in the underlying physics simulation and error accumulation over long execution time.
If you find these checkpoints useful, please cite our paper:
@article{kim2026serf,
title = {SERF: Spatiotemporal Environment and Robot Feature Map for Long-Horizon Mobile Manipulation},
author = {Kim, Sunghwan and Pak, Byeonghyun and Long, Kehan and Tian, Yulun and Atanasov, Nikolay},
journal = {arXiv preprint arXiv:2606.12956},
year = {2026}
}
This release builds on behavior-1k-solution, openpi, and BEHAVIOR-1K. We thank the authors and maintainers of these projects.