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