ZijunCui commited on
Commit
4b7e546
·
verified ·
1 Parent(s): 3deabe1

Document checksums and final availability

Browse files
Files changed (1) hide show
  1. README.md +17 -7
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
- The dataset is uploaded in shards. `metadata/*.jsonl` lists only rows whose files
111
- are already present, and `metadata/stats.json` records the published shards under
112
- `published_shards` so a run driven by the metadata never asks for a missing
113
- file. Counts in the table above are the full target; check `published_rows` for
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