Seatalm commited on
Commit
15d4345
·
verified ·
1 Parent(s): d2a4f7a

Add Data directory download instructions

Browse files
Files changed (1) hide show
  1. Data/README.md +80 -0
Data/README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Robotwin ACT Data Archive
2
+
3
+ This directory contains the split archive for `robotwin-act-data.tar.gz`.
4
+
5
+ ## Files
6
+
7
+ Download all seven parts:
8
+
9
+ ```text
10
+ robotwin-act-data.tar.gz.part001
11
+ robotwin-act-data.tar.gz.part002
12
+ robotwin-act-data.tar.gz.part003
13
+ robotwin-act-data.tar.gz.part004
14
+ robotwin-act-data.tar.gz.part005
15
+ robotwin-act-data.tar.gz.part006
16
+ robotwin-act-data.tar.gz.part007
17
+ ```
18
+
19
+ The merged archive should be:
20
+
21
+ ```text
22
+ robotwin-act-data.tar.gz
23
+ ```
24
+
25
+ Expected merged size:
26
+
27
+ ```text
28
+ 128,050,721,979 bytes
29
+ ```
30
+
31
+ Expected SHA256:
32
+
33
+ ```text
34
+ 6B10200A8800B70700084F9437175151886D349B1270A4A659172F0C548A6284
35
+ ```
36
+
37
+ ## Download
38
+
39
+ Install the Hugging Face CLI, then run:
40
+
41
+ ```bash
42
+ hf download MetaAct/robotwin-act --repo-type dataset --include "Data/robotwin-act-data.tar.gz.part*"
43
+ ```
44
+
45
+ ## Merge
46
+
47
+ After downloading, merge the parts in order.
48
+
49
+ Windows CMD:
50
+
51
+ ```cmd
52
+ copy /b Data\robotwin-act-data.tar.gz.part001+Data\robotwin-act-data.tar.gz.part002+Data\robotwin-act-data.tar.gz.part003+Data\robotwin-act-data.tar.gz.part004+Data\robotwin-act-data.tar.gz.part005+Data\robotwin-act-data.tar.gz.part006+Data\robotwin-act-data.tar.gz.part007 robotwin-act-data.tar.gz
53
+ ```
54
+
55
+ Linux/macOS:
56
+
57
+ ```bash
58
+ cat Data/robotwin-act-data.tar.gz.part* > robotwin-act-data.tar.gz
59
+ ```
60
+
61
+ ## Verify
62
+
63
+ Windows PowerShell:
64
+
65
+ ```powershell
66
+ Get-FileHash -Algorithm SHA256 .\robotwin-act-data.tar.gz
67
+ ```
68
+
69
+ Linux/macOS:
70
+
71
+ ```bash
72
+ sha256sum robotwin-act-data.tar.gz
73
+ ```
74
+
75
+ The checksum must match:
76
+
77
+ ```text
78
+ 6B10200A8800B70700084F9437175151886D349B1270A4A659172F0C548A6284
79
+ ```
80
+