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