Add dataset card and link to paper
#2
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- robotics
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# AnyPos: Automated Task-Agnostic Actions for Bimanual Manipulation
|
| 7 |
+
|
| 8 |
+
This repository contains the dataset for the paper [AnyPos: Automated Task-Agnostic Actions for Bimanual Manipulation](https://huggingface.co/papers/2507.12768).
|
| 9 |
+
|
| 10 |
+
[**Project Page**](https://embodiedfoundation.github.io/vidar_anypos) | [**Github**](https://github.com/yaofeng1998/Vidar)
|
| 11 |
+
|
| 12 |
+
## Dataset Description
|
| 13 |
+
|
| 14 |
+
AnyPos is a unified pipeline that integrates large-scale automated task-agnostic exploration with robust embodiment modeling. By exploring feasible actions of an embodiment, the dataset captures physical consistency and decouples embodiment dynamics from high-level policy learning. This allows for scalability and reuse of action data across different tasks like operating a microwave, folding clothes, and watering plants.
|
| 15 |
+
|
| 16 |
+
## Dataset Structure
|
| 17 |
+
|
| 18 |
+
According to the official repository, the data is organized as follows:
|
| 19 |
+
|
| 20 |
+
- **Videos:** `task_name/episode_idx.mp4` (multi-view video files).
|
| 21 |
+
- **Actions:** `task_name/episode_idx_qpos.pt` (2D tensors containing corresponding actions/joint positions).
|
| 22 |
+
|
| 23 |
+
For training the associated Video Diffusion Model (Vidar), metadata is formatted as:
|
| 24 |
+
```json
|
| 25 |
+
{
|
| 26 |
+
"video_path": "{VIDEO_PATH}",
|
| 27 |
+
"raw_caption": {
|
| 28 |
+
"long caption": "{PROMPT}"
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
```bibtex
|
| 36 |
+
@article{anypos2025,
|
| 37 |
+
title={AnyPos: Automated Task-Agnostic Actions for Bimanual Manipulation},
|
| 38 |
+
author={...},
|
| 39 |
+
journal={arXiv preprint arXiv:2507.12768},
|
| 40 |
+
year={2025}
|
| 41 |
+
}
|
| 42 |
+
```
|