Datasets:
Document checksums and final availability
Browse files
README.md
CHANGED
|
@@ -76,9 +76,20 @@ One row:
|
|
| 76 |
"youtube_url": "https://www.youtube.com/watch?v=-EOhDHns4xw",
|
| 77 |
"audio": {"path": "audio/train/00/-EOhDHns4xw.webm", "bytes": 11536470,
|
| 78 |
"duration": 255.981, "codec": "opus", "channels": 4,
|
| 79 |
-
"channel_layout": "ambisonic 1", "sample_rate": 48000
|
|
|
|
| 80 |
"video": {"path": "video/train/00/-EOhDHns4xw.webm", "bytes": 557769482,
|
| 81 |
-
"duration": 256.008, "codec": "vp9", "width": 3840, "height": 2160
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
```
|
| 83 |
|
| 84 |
Pull one shard instead of 5.66 TB:
|
|
@@ -107,11 +118,10 @@ hf download OmniAV/Sphere360 --repo-type dataset --include "audio/train/00/*" "v
|
|
| 107 |
|
| 108 |
## Availability
|
| 109 |
|
| 110 |
-
|
| 111 |
-
are
|
| 112 |
-
`published_shards`
|
| 113 |
-
|
| 114 |
-
what is live right now.
|
| 115 |
|
| 116 |
## Citation
|
| 117 |
|
|
|
|
| 76 |
"youtube_url": "https://www.youtube.com/watch?v=-EOhDHns4xw",
|
| 77 |
"audio": {"path": "audio/train/00/-EOhDHns4xw.webm", "bytes": 11536470,
|
| 78 |
"duration": 255.981, "codec": "opus", "channels": 4,
|
| 79 |
+
"channel_layout": "ambisonic 1", "sample_rate": 48000,
|
| 80 |
+
"sha256": "6e4f14c2cb0c0790..."},
|
| 81 |
"video": {"path": "video/train/00/-EOhDHns4xw.webm", "bytes": 557769482,
|
| 82 |
+
"duration": 256.008, "codec": "vp9", "width": 3840, "height": 2160,
|
| 83 |
+
"sha256": "..."}}
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
Every entry carries `bytes` and `sha256`, so a download can be checked without
|
| 87 |
+
trusting the transfer:
|
| 88 |
+
|
| 89 |
+
```python
|
| 90 |
+
import hashlib
|
| 91 |
+
h = hashlib.sha256(open(audio, "rb").read()).hexdigest()
|
| 92 |
+
assert h == r["audio"]["sha256"]
|
| 93 |
```
|
| 94 |
|
| 95 |
Pull one shard instead of 5.66 TB:
|
|
|
|
| 118 |
|
| 119 |
## Availability
|
| 120 |
|
| 121 |
+
All 64 shards are published — 11,787 files, 5.66 TB. `metadata/*.jsonl` lists
|
| 122 |
+
only rows whose files are actually present, and `metadata/stats.json` records the
|
| 123 |
+
live set under `published_shards` / `published_rows`, so a run driven by the
|
| 124 |
+
metadata never asks for a missing file.
|
|
|
|
| 125 |
|
| 126 |
## Citation
|
| 127 |
|