Heegergao commited on
Commit
96a8501
·
1 Parent(s): 228329f
Files changed (2) hide show
  1. .gitattributes +0 -1
  2. README.md +49 -3
.gitattributes CHANGED
@@ -35,5 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  LIBERO_checkpoints filter=lfs diff=lfs merge=lfs -text
37
  Qwen2.5-VLM filter=lfs diff=lfs merge=lfs -text
38
- README.md filter=lfs diff=lfs merge=lfs -text
39
  auxiliary/** filter=lfs diff=lfs merge=lfs -text
 
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  LIBERO_checkpoints filter=lfs diff=lfs merge=lfs -text
37
  Qwen2.5-VLM filter=lfs diff=lfs merge=lfs -text
 
38
  auxiliary/** filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,49 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7108a120ed7857d3328855448627edffbae5b31aec0cb2f0d089f50d59cbad25
3
- size 1012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - robotics
5
+ - multimodal
6
+ - finetuning
7
+ - vla
8
+ ---
9
+
10
+ # Model Card
11
+
12
+ This is the model checkpoints used in the paper *VLA-OS: Structuring and Dissecting Planning Representations and Paradigms in Vision-Language-Action Models*.
13
+
14
+ Currently we release the Qwen2.5 VLM checkpoints as well as necessary networks for training. We will release all checkpoints after the paper gets accepted.
15
+
16
+ ## Source
17
+
18
+ - Project Page: TODO
19
+ - Paper: TODO
20
+ - Code: https://github.com/HeegerGao/VLA-OS
21
+ - Data: https://huggingface.co/datasets/Linslab/VLA-OS-Dataset
22
+
23
+ ## Usage
24
+
25
+ Ensure you have installed git lfs:
26
+ ```bash
27
+ curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
28
+ sudo apt-get install git-lfs
29
+ git lfs install
30
+ ```
31
+
32
+ Then download this repo:
33
+ ```bash
34
+ git clone https://huggingface.co/Linslab/VLA-OS
35
+ ```
36
+
37
+ ## Model Description
38
+
39
+ Please refer to the codebase for more description and usage.
40
+
41
+ ## Citation
42
+
43
+ If you find our work helpful, please cite us:
44
+
45
+ ```bibtex
46
+ TODO
47
+ ```
48
+
49
+ Thank you!