Haoze1235 commited on
Commit
bdbd070
·
verified ·
1 Parent(s): 9033fd4

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Prepared Dataset Archives
2
+
3
+ This repository stores a prepared split as tar.zst archives to avoid
4
+ millions of small files in the Hugging Face repository.
5
+
6
+ Extraction:
7
+
8
+ ```bash
9
+ mkdir -p data
10
+ for f in *.tar.zst; do
11
+ tar --use-compress-program=zstd -xf "$f" -C data
12
+ done
13
+ sha256sum -c SHA256SUMS
14
+ ```
15
+
16
+ After extraction, the layout is:
17
+
18
+ ```text
19
+ data/
20
+ dataset.json
21
+ dataset_stats.json
22
+ jsonl/
23
+ frames/
24
+ vision_cache/
25
+ ```