hqfang commited on
Commit
6ccd8b2
·
verified ·
1 Parent(s): 2415410

Add SAM2Act replay buffer README

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ library_name: robotics
6
+ tags:
7
+ - sam2act
8
+ - replay-buffer
9
+ - robot-manipulation
10
+ - rlbench
11
+ - memorybench
12
+ ---
13
+
14
+ # SAM2Act
15
+
16
+ SAM2Act is a multi-view robotics transformer policy for robotic manipulation. Built on RVT-2, it combines multi-resolution upsampling with visual embeddings from the SAM2 foundation model to improve 3D action prediction, multitask learning, and generalization. SAM2Act+ extends this policy with a memory bank, memory encoder, and memory attention so the agent can condition on prior observations and actions for spatial memory-dependent tasks.
17
+
18
+ For full project details, code, training instructions, and videos, see the [SAM2Act website](https://sam2act.github.io/) and [GitHub repository](https://github.com/sam2act/sam2act).
19
+
20
+ ## Replay Buffers
21
+
22
+ This dataset repository stores pre-generated replay buffers for training SAM2Act and SAM2Act+. The buffers are serialized YARR replay buffers generated from the RLBench and MemoryBench demonstrations, so they can be loaded directly during training instead of being rebuilt on the fly.
23
+
24
+ The repository is organized as follows:
25
+
26
+ ```text
27
+ replay_temporal/replay_train/ # RLBench 18-task replay buffers
28
+ replay_temporal_memory/replay_train/ # MemoryBench replay buffers
29
+ ```
30
+
31
+ Each task is provided as a `.tar.xz` archive. After downloading, extract each archive with `tar -xf <task_name>.tar.xz` and place the extracted task folders under the matching local directory in the SAM2Act codebase:
32
+
33
+ - RLBench: `sam2act/sam2act/replay_temporal/replay_train`
34
+ - MemoryBench: `sam2act/sam2act/replay_temporal_memory/replay_train`
35
+
36
+ These replay buffers are intended for training from scratch. They are not required for evaluating the pretrained models in [hqfang/sam2act-models](https://huggingface.co/hqfang/sam2act-models).
37
+
38
+ ## Bibtex
39
+
40
+ If you use these replay buffers, please cite the SAM2Act paper:
41
+
42
+ ```bibtex
43
+ @misc{fang2025sam2act,
44
+ title={SAM2Act: Integrating Visual Foundation Model with A Memory Architecture for Robotic Manipulation},
45
+ author={Haoquan Fang and Markus Grotz and Wilbert Pumacay and Yi Ru Wang and Dieter Fox and Ranjay Krishna and Jiafei Duan},
46
+ year={2025},
47
+ eprint={2501.18564},
48
+ archivePrefix={arXiv},
49
+ primaryClass={cs.RO},
50
+ url={https://arxiv.org/abs/2501.18564},
51
+ }
52
+ ```