Spaces:
Running
Running
Rename project: Counter Strike 2 Dataset → OpenCS2 Dataset
Browse filesDisplay-name only; URLs (HF Space, GitHub repo, dataset id) stay the same.
References to the GAME ('Counter Strike 2', 'CS2') are unchanged.
BibTeX key updated to blanchon2026opencs2.
- README.md +5 -5
- src/lib/assets/favicon.svg +1 -1
- src/lib/site.ts +2 -3
- src/routes/+page.svelte +3 -3
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🎯
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: gray
|
|
@@ -10,9 +10,9 @@ license: mit
|
|
| 10 |
short_description: Browse the CS2 dataset by match, map, round, and POV.
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
-
Browser for [`blanchon/cs2_dataset_render`](https://huggingface.co/datasets/blanchon/cs2_dataset_render), a rendered Counter Strike 2 dataset built from professional HLTV demos. The viewer lists every match, map, and round in the dataset and plays the 10 synchronized player POVs back-to-back on a single timeline — without downloading the full archive.
|
| 16 |
|
| 17 |
It's a pure-frontend SvelteKit app: parquet indexes are read in the browser via [`hyparquet`](https://github.com/hyparquet/hyparquet), preview MP4s stream from Hugging Face, and 10 chunked players stay in sync through a custom [`mediabunny`](https://mediabunny.dev/) pipeline.
|
| 18 |
|
|
@@ -124,9 +124,9 @@ The whole viewer is a static SvelteKit build — there is no backend.
|
|
| 124 |
## Citation
|
| 125 |
|
| 126 |
```bibtex
|
| 127 |
-
@misc{
|
| 128 |
author = {Julien Blanchon},
|
| 129 |
-
title = {
|
| 130 |
year = {2026},
|
| 131 |
publisher = {Hugging Face},
|
| 132 |
howpublished = {\url{https://github.com/julien-blanchon/counter-strike-2-dataset}},
|
|
|
|
| 1 |
---
|
| 2 |
+
title: OpenCS2 Dataset - Viewer
|
| 3 |
emoji: 🎯
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: gray
|
|
|
|
| 10 |
short_description: Browse the CS2 dataset by match, map, round, and POV.
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# OpenCS2 Dataset - Viewer
|
| 14 |
|
| 15 |
+
Browser for [`blanchon/cs2_dataset_render`](https://huggingface.co/datasets/blanchon/cs2_dataset_render), the OpenCS2 dataset: a rendered Counter Strike 2 dataset built from professional HLTV demos. The viewer lists every match, map, and round in the dataset and plays the 10 synchronized player POVs back-to-back on a single timeline — without downloading the full archive.
|
| 16 |
|
| 17 |
It's a pure-frontend SvelteKit app: parquet indexes are read in the browser via [`hyparquet`](https://github.com/hyparquet/hyparquet), preview MP4s stream from Hugging Face, and 10 chunked players stay in sync through a custom [`mediabunny`](https://mediabunny.dev/) pipeline.
|
| 18 |
|
|
|
|
| 124 |
## Citation
|
| 125 |
|
| 126 |
```bibtex
|
| 127 |
+
@misc{blanchon2026opencs2,
|
| 128 |
author = {Julien Blanchon},
|
| 129 |
+
title = {OpenCS2 Dataset},
|
| 130 |
year = {2026},
|
| 131 |
publisher = {Hugging Face},
|
| 132 |
howpublished = {\url{https://github.com/julien-blanchon/counter-strike-2-dataset}},
|
src/lib/assets/favicon.svg
CHANGED
|
|
|
|
src/lib/site.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
| 1 |
import { DATASET } from '$lib/types';
|
| 2 |
|
| 3 |
export const site = {
|
| 4 |
-
name: '
|
| 5 |
-
description:
|
| 6 |
-
'Browse the Counter Strike 2 dataset by match, map, round, and synchronized player POV.',
|
| 7 |
author: 'Julien Blanchon',
|
| 8 |
datasetId: DATASET,
|
| 9 |
datasetUrl: `https://huggingface.co/datasets/${DATASET}`,
|
|
|
|
| 1 |
import { DATASET } from '$lib/types';
|
| 2 |
|
| 3 |
export const site = {
|
| 4 |
+
name: 'OpenCS2 Dataset - Viewer',
|
| 5 |
+
description: 'Browse the OpenCS2 dataset by match, map, round, and synchronized player POV.',
|
|
|
|
| 6 |
author: 'Julien Blanchon',
|
| 7 |
datasetId: DATASET,
|
| 8 |
datasetUrl: `https://huggingface.co/datasets/${DATASET}`,
|
src/routes/+page.svelte
CHANGED
|
@@ -103,7 +103,7 @@
|
|
| 103 |
HLTV · CS2 · Rendered POV Dataset
|
| 104 |
</div>
|
| 105 |
<h1 class="font-heading text-4xl font-semibold tracking-tight text-balance md:text-5xl">
|
| 106 |
-
|
| 107 |
</h1>
|
| 108 |
<div class="mt-5 flex items-center justify-center gap-3 text-sm text-muted-foreground">
|
| 109 |
<span class="font-medium text-foreground">{site.author}</span>
|
|
@@ -338,9 +338,9 @@
|
|
| 338 |
BibTeX
|
| 339 |
</h2>
|
| 340 |
<pre
|
| 341 |
-
class="mt-3 overflow-x-auto rounded-md border bg-card p-4 text-left font-mono text-xs/relaxed text-foreground/90">{`@misc{
|
| 342 |
author = {Julien Blanchon},
|
| 343 |
-
title = {
|
| 344 |
year = {2026},
|
| 345 |
publisher = {Hugging Face},
|
| 346 |
howpublished = {\\url{https://github.com/julien-blanchon/counter-strike-2-dataset}},
|
|
|
|
| 103 |
HLTV · CS2 · Rendered POV Dataset
|
| 104 |
</div>
|
| 105 |
<h1 class="font-heading text-4xl font-semibold tracking-tight text-balance md:text-5xl">
|
| 106 |
+
OpenCS2 Dataset
|
| 107 |
</h1>
|
| 108 |
<div class="mt-5 flex items-center justify-center gap-3 text-sm text-muted-foreground">
|
| 109 |
<span class="font-medium text-foreground">{site.author}</span>
|
|
|
|
| 338 |
BibTeX
|
| 339 |
</h2>
|
| 340 |
<pre
|
| 341 |
+
class="mt-3 overflow-x-auto rounded-md border bg-card p-4 text-left font-mono text-xs/relaxed text-foreground/90">{`@misc{blanchon2026opencs2,
|
| 342 |
author = {Julien Blanchon},
|
| 343 |
+
title = {OpenCS2 Dataset},
|
| 344 |
year = {2026},
|
| 345 |
publisher = {Hugging Face},
|
| 346 |
howpublished = {\\url{https://github.com/julien-blanchon/counter-strike-2-dataset}},
|