Update card for the BridgeVLA++ release
Browse files
README.md
CHANGED
|
@@ -1,5 +1,78 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- vision-language-action
|
| 6 |
+
- manipulation
|
| 7 |
---
|
| 8 |
+
|
| 9 |
+
# BridgeVLA++
|
| 10 |
+
|
| 11 |
+
Pre-training data and checkpoints for **BridgeVLA++** and its predecessor **BridgeVLA**.
|
| 12 |
+
|
| 13 |
+
BridgeVLA++ is a 3D vision-language-action framework that preserves the input-output
|
| 14 |
+
alignment of a pre-trained VLM during 3D action learning — point clouds are projected
|
| 15 |
+
into multi-view images and intermediate heatmaps are predicted before actions — and
|
| 16 |
+
extends it with a unified **spatio-temporal memory** modeling persistent spatial
|
| 17 |
+
context and temporal interaction history. It matches or surpasses BridgeVLA on the
|
| 18 |
+
original benchmarks without sacrificing data efficiency or generalization, reaches
|
| 19 |
+
state of the art on two memory-dependent benchmarks, and extends to bimanual
|
| 20 |
+
manipulation and a new real-world embodiment.
|
| 21 |
+
|
| 22 |
+
BridgeVLA++ 是一个 3D 视觉-语言-动作框架:沿用 BridgeVLA「把点云投影成多视角图像、
|
| 23 |
+
先预测热力图再生成动作」的输入输出对齐设计,并引入统一的**时空记忆**,同时建模持久的
|
| 24 |
+
空间上下文与时序交互历史。它在原有基准上追平或超过 BridgeVLA(数据效率与泛化性不降),
|
| 25 |
+
在两个记忆依赖基准上达到 SOTA,并可扩展到双臂操作与新的真机本体。
|
| 26 |
+
|
| 27 |
+
## Contents 内容
|
| 28 |
+
|
| 29 |
+
```
|
| 30 |
+
checkpoints/
|
| 31 |
+
├── pretrain/ # grounding pre-training weights, shared by both models
|
| 32 |
+
│ # 两代共用的 grounding 预训练权重(finetune 暖启点)
|
| 33 |
+
├── bridgevla/ # BridgeVLA (original) 原版权重
|
| 34 |
+
│ └── rlbench/ colosseum/ gembench/
|
| 35 |
+
└── bridgevla_plus/ # BridgeVLA++ 权重
|
| 36 |
+
├── rlbench/ colosseum/ gembench/ memorybench/
|
| 37 |
+
└── rmbench/<task>/ # per-task, 9 tasks 每任务一个目录,共 9 个
|
| 38 |
+
pretrain_data/
|
| 39 |
+
├── coco.tar.gz # COCO images 图像
|
| 40 |
+
└── detection_data.json # RoboPoint grounding annotations 标注
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
Every checkpoint directory holds `model_<epoch>.pth` together with `exp_cfg.yaml` and
|
| 44 |
+
`mvt_cfg.yaml`; the two configs define the network architecture and must stay next to
|
| 45 |
+
the weights.
|
| 46 |
+
|
| 47 |
+
每个权重目录都是 `model_<epoch>.pth` + `exp_cfg.yaml` + `mvt_cfg.yaml`;后两者决定网络
|
| 48 |
+
结构,必须与权重放在一起。
|
| 49 |
+
|
| 50 |
+
| epoch | RLBench | COLOSSEUM | GemBench | memoryBench | RMBench |
|
| 51 |
+
|---|---|---|---|---|---|
|
| 52 |
+
| BridgeVLA++ | 130 | 200 | 200 | 160 | per-task 每任务不同 |
|
| 53 |
+
| BridgeVLA | 80 | 80 | 40 | – | – |
|
| 54 |
+
|
| 55 |
+
The `bridgevla/` checkpoints belong to the original BridgeVLA codebase and are **not**
|
| 56 |
+
loadable by BridgeVLA++; run them with that codebase. Only `pretrain/` is shared by both.
|
| 57 |
+
|
| 58 |
+
`bridgevla/` 下的权重属于原版 BridgeVLA 代码库,**无法**被 BridgeVLA++ 加载,
|
| 59 |
+
请配合原版代码库使用。两代共用的只有 `pretrain/`。
|
| 60 |
+
|
| 61 |
+
## Papers 论文
|
| 62 |
+
|
| 63 |
+
- **BridgeVLA++: A Data-Efficient, Generalizable, and Memory-Augmented Vision-Language-Action Framework for 3D Manipulation** — arXiv coming soon.
|
| 64 |
+
- **BridgeVLA: Input-Output Alignment for Efficient 3D Manipulation Learning with Vision-Language Models** — [arXiv:2506.07961](https://arxiv.org/abs/2506.07961)
|
| 65 |
+
|
| 66 |
+
Usage instructions live in the code repository.
|
| 67 |
+
使用方法见代码仓库。
|
| 68 |
+
|
| 69 |
+
## Provenance 出处
|
| 70 |
+
|
| 71 |
+
`pretrain/`, `bridgevla/` and `pretrain_data/` are the artifacts released with
|
| 72 |
+
BridgeVLA. `pretrain_data/` builds on COCO images and RoboPoint-style grounding
|
| 73 |
+
annotations, which remain subject to their original terms; the Apache-2.0 license above
|
| 74 |
+
applies to the model weights.
|
| 75 |
+
|
| 76 |
+
`pretrain/`、`bridgevla/` 与 `pretrain_data/` 来自 BridgeVLA 的发布内容。
|
| 77 |
+
`pretrain_data/` 基于 COCO 图像与 RoboPoint 形式的 grounding 标注,仍受其原始条款约束;
|
| 78 |
+
上方的 Apache-2.0 许可适用于模型权重。
|