l2aggle commited on
Commit
db6b621
·
verified ·
1 Parent(s): 3ed2eb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -3
README.md CHANGED
@@ -1,3 +1,94 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - motion-retargeting
7
+ - humanoid-robot
8
+ - agibot
9
+ - unitree-g1
10
+ size_categories:
11
+ - 10G<n<100G
12
+ ---
13
+ # Agibot2UnitreeG1Retarget Dataset
14
+
15
+ ## Description
16
+ This dataset contains action retargeting data from Agibot to UnitreeG1 humanoid robot.
17
+
18
+ ## Dataset Size
19
+ - Total size: ~30GB
20
+ - Split into 7 parts (A2UG1_dataset.tar.gz.aa to A2UG1_dataset.tar.gz.ag)
21
+ - Each part is approximately 4GB
22
+
23
+ ## Usage
24
+
25
+ ### Method 1: Using Hugging Face Hub (Recommended)
26
+ ```bash
27
+ pip install huggingface-hub
28
+ ```
29
+
30
+ ```python
31
+ from huggingface_hub import snapshot_download
32
+
33
+ # Download the entire dataset
34
+ snapshot_download(
35
+ repo_id="l2aggle/Agibot2UnitreeG1Retarget",
36
+ repo_type="dataset",
37
+ local_dir="./Agibot2UnitreeG1Retarget"
38
+ )
39
+ ```
40
+
41
+ ### Method 2: Using Git with LFS
42
+ ```bash
43
+ # Make sure git-lfs is installed
44
+ git lfs install
45
+
46
+ # Clone the repository (this will download LFS pointer files)
47
+ git clone https://huggingface.co/datasets/l2aggle/Agibot2UnitreeG1Retarget
48
+ cd Agibot2UnitreeG1Retarget
49
+
50
+ # Download the actual large files
51
+ git lfs pull
52
+ ```
53
+
54
+ ### Method 3: Manual Download
55
+ Download individual parts through the Hugging Face web interface:
56
+ https://huggingface.co/datasets/l2aggle/Agibot2UnitreeG1Retarget/tree/main
57
+
58
+ ## Extract Dataset
59
+ After downloading, extract the complete dataset:
60
+
61
+ ```bash
62
+ # Combine and extract all parts
63
+ cat A2UG1_dataset.tar.gz.* | tar -xzf -
64
+ ```
65
+
66
+ This will create the complete `A2UG1_dataset` folder with all original files.
67
+
68
+ ## File Structure
69
+ ```
70
+ A2UG1_dataset/
71
+ ├── [your dataset structure will be shown here after extraction]
72
+ ```
73
+
74
+ ## Requirements
75
+ - At least 60GB free disk space (30GB for download + 30GB for extraction)
76
+ - For Method 1: Python 3.6+ with `huggingface-hub` package
77
+ - For Method 2: Git with Git LFS support
78
+ - tar utility (standard on Linux/Mac, available on Windows via WSL or Git Bash)
79
+
80
+ ## Installation Requirements
81
+ ```bash
82
+ # For Method 1
83
+ pip install huggingface-hub
84
+
85
+ # For Method 2 (if git-lfs not installed)
86
+ # Ubuntu/Debian:
87
+ sudo apt install git-lfs
88
+ # macOS:
89
+ brew install git-lfs
90
+ # Windows: download from https://git-lfs.github.io/
91
+ ```
92
+
93
+ ## License
94
+ Apache 2.0