update rendered dataset README
Browse files
README.md
CHANGED
|
@@ -50,7 +50,10 @@ rendered training dataset.
|
|
| 50 |
|
| 51 |
- `previews` (default): one low-resolution `preview_video` row per chunk with
|
| 52 |
the input overlay baked in. Preview MP4s are stored as loose files and the
|
| 53 |
-
Parquet stores only their relative paths, so filtering stays cheap.
|
|
|
|
|
|
|
|
|
|
| 54 |
`preview_path` column is relative to the preview Parquet directory
|
| 55 |
(`previews/chunk_000123/preview.mp4`), while `preview_video.path` is an
|
| 56 |
`hf://datasets/<repo>@main/...` URI so Hugging Face's dataset viewer can
|
|
@@ -74,7 +77,10 @@ data/
|
|
| 74 |
video.mp4
|
| 75 |
audio.wav
|
| 76 |
previews/
|
| 77 |
-
chunk_<ordinal>/
|
|
|
|
|
|
|
|
|
|
| 78 |
index/
|
| 79 |
manifest-<machine>-<uuid>.parquet
|
| 80 |
rounds-<machine>-<uuid>.parquet
|
|
@@ -137,13 +143,13 @@ LIMIT 20;
|
|
| 137 |
## Partial Download
|
| 138 |
|
| 139 |
```bash
|
| 140 |
-
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 141 |
--include "index/*.parquet"
|
| 142 |
|
| 143 |
-
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 144 |
--include "data/match_id=2393343/**/chunks-preview-*.parquet"
|
| 145 |
|
| 146 |
-
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 147 |
--include "data/match_id=2393343/map_name=de_ancient/player=0/chunks-full-*.parquet"
|
| 148 |
```
|
| 149 |
|
|
|
|
| 50 |
|
| 51 |
- `previews` (default): one low-resolution `preview_video` row per chunk with
|
| 52 |
the input overlay baked in. Preview MP4s are stored as loose files and the
|
| 53 |
+
Parquet stores only their relative paths, so filtering stays cheap. Each
|
| 54 |
+
preview directory also carries lightweight `inputs.preview.json` and
|
| 55 |
+
`world.preview.jsonl` sidecars sampled at 1 Hz for debugging/browsing without
|
| 56 |
+
loading the heavy `chunks` config. The
|
| 57 |
`preview_path` column is relative to the preview Parquet directory
|
| 58 |
(`previews/chunk_000123/preview.mp4`), while `preview_video.path` is an
|
| 59 |
`hf://datasets/<repo>@main/...` URI so Hugging Face's dataset viewer can
|
|
|
|
| 77 |
video.mp4
|
| 78 |
audio.wav
|
| 79 |
previews/
|
| 80 |
+
chunk_<ordinal>/
|
| 81 |
+
preview.mp4
|
| 82 |
+
inputs.preview.json
|
| 83 |
+
world.preview.jsonl
|
| 84 |
index/
|
| 85 |
manifest-<machine>-<uuid>.parquet
|
| 86 |
rounds-<machine>-<uuid>.parquet
|
|
|
|
| 143 |
## Partial Download
|
| 144 |
|
| 145 |
```bash
|
| 146 |
+
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 147 |
--include "index/*.parquet"
|
| 148 |
|
| 149 |
+
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 150 |
--include "data/match_id=2393343/**/chunks-preview-*.parquet"
|
| 151 |
|
| 152 |
+
hf download blanchon/cs2_dataset_render --repo-type dataset \
|
| 153 |
--include "data/match_id=2393343/map_name=de_ancient/player=0/chunks-full-*.parquet"
|
| 154 |
```
|
| 155 |
|