File size: 2,735 Bytes
eb6bf10 | 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # CounterStrike-1K Schema
This directory is the release-facing schema contract for CounterStrike-1K.
It describes the public WebDataset sample members, Parquet indices, and
derived match traces distributed with the Hugging Face release.
The schema boundary is intentional:
- Raw HLTV demo files are not redistributed.
- Steam IDs, XUIDs, account IDs, profile URLs, raw HLTV identifiers, raw demo
paths, raw demo URLs, and player names are not valid public fields.
- Player references use `pov_idx`, an anonymized integer stable only within one
`match_id`. It is not a dataset-global player identifier.
- Aggregate player counts may be reported in `stats/`, but public artifacts do
not contain player names or stable cross-match player identifiers.
Files:
| File | Artifact |
|---|---|
| `media.json` | MP4 video/audio encoding contract. |
| `actions_bin.json` | `{sample_key}.actions.bin` fixed-width control/action records. |
| `state_bin.json` | `{sample_key}.state.bin` fixed-width player/game-state records. |
| `events.json` | `{sample_key}.events.json` sparse per-sample event log. |
| `sample_metadata.json` | `{sample_key}.json` public sample metadata sidecar. |
| `manifest.json` | `manifest.parquet` dataset sample inventory. |
| `sample_index.json` | `sample_index.parquet` physical WebDataset member lookup. |
| `row_index.json` | `row_index.parquet` sample-level physical WebDataset lookup. |
| `round_index.json` | `round_index.parquet` synchronized round groups. |
| `match_index.json` | `match_index.parquet` match-map aggregates. |
| `subsets.json` | `subsets/*.parquet` researcher-facing subset views. |
| `match_states.json` | `match_states/match_{match_id}.parquet` tick-level state traces. |
| `match_events.json` | `match_events/match_{match_id}.parquet` sanitized event traces. |
| `maps.json` | Public map enum and optional visualizer calibration. |
| `weapons.json` | Public weapon category and weapon-id enums. |
| `stats_summary.json` | `stats/summary.json` top-level dataset statistics for the dataset card. |
| `stats_maps.json` | `stats/maps.json` per-map composition and round behavior summary. |
| `stats_rounds.json` | `stats/rounds.json` global round structure and outcome summary. |
| `stats_weapons.json` | `stats/weapons.json` manifest-derived weapon exposure summary. |
| `stats_events.json` | `stats/events.json` per-sample and full-match event distribution summary. |
| `stats_media.json` | `stats/media.json` physical media/storage and MP4 validation summary. |
| `stats_quality.json` | `stats/quality.json` release QA, source filtering, and privacy validation summary. |
| `stats_release_environment.json` | `stats/release_environment.json` final render/pack provenance metadata. |
|