Spaces:
Running
Running
Home: drop /target counters; thank Hugging Face and RunPod
Browse files- src/routes/+page.svelte +26 -8
src/routes/+page.svelte
CHANGED
|
@@ -33,9 +33,6 @@
|
|
| 33 |
|
| 34 |
const TICK_RATE = 64;
|
| 35 |
const PERSPECTIVES_PER_ROUND = 10;
|
| 36 |
-
const TARGET_MAPS = 2540;
|
| 37 |
-
const HOURS_PER_MAP = 6;
|
| 38 |
-
const TARGET_HOURS = TARGET_MAPS * HOURS_PER_MAP;
|
| 39 |
|
| 40 |
const totalMaps = $derived(data.matches.length);
|
| 41 |
const totalMatches = $derived(new Set(data.matches.map((m) => m.match_id)).size);
|
|
@@ -325,9 +322,7 @@
|
|
| 325 |
<div class="rounded-md border bg-card p-3">
|
| 326 |
<div class="text-xs tracking-wide text-muted-foreground uppercase">Maps rendered</div>
|
| 327 |
<div class="mt-0.5 font-heading text-2xl tabular-nums">
|
| 328 |
-
{totalMaps}
|
| 329 |
-
>/{TARGET_MAPS}</span
|
| 330 |
-
>
|
| 331 |
</div>
|
| 332 |
</div>
|
| 333 |
<div class="rounded-md border bg-card p-3">
|
|
@@ -340,7 +335,7 @@
|
|
| 340 |
<div class="text-xs tracking-wide text-muted-foreground uppercase">Footage</div>
|
| 341 |
<div class="mt-0.5 font-heading text-2xl tabular-nums">
|
| 342 |
{totalHours < 1 ? totalHours.toFixed(1) : Math.round(totalHours)}<span
|
| 343 |
-
class="text-base font-medium text-muted-foreground/60">h
|
| 344 |
>
|
| 345 |
</div>
|
| 346 |
</div>
|
|
@@ -440,7 +435,30 @@
|
|
| 440 |
class="font-medium text-foreground underline decoration-foreground/30 underline-offset-4 transition hover:decoration-foreground"
|
| 441 |
>SentientX</a
|
| 442 |
>
|
| 443 |
-
team for their careful review and feedback on this dataset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 444 |
</p>
|
| 445 |
</section>
|
| 446 |
|
|
|
|
| 33 |
|
| 34 |
const TICK_RATE = 64;
|
| 35 |
const PERSPECTIVES_PER_ROUND = 10;
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
const totalMaps = $derived(data.matches.length);
|
| 38 |
const totalMatches = $derived(new Set(data.matches.map((m) => m.match_id)).size);
|
|
|
|
| 322 |
<div class="rounded-md border bg-card p-3">
|
| 323 |
<div class="text-xs tracking-wide text-muted-foreground uppercase">Maps rendered</div>
|
| 324 |
<div class="mt-0.5 font-heading text-2xl tabular-nums">
|
| 325 |
+
{totalMaps}
|
|
|
|
|
|
|
| 326 |
</div>
|
| 327 |
</div>
|
| 328 |
<div class="rounded-md border bg-card p-3">
|
|
|
|
| 335 |
<div class="text-xs tracking-wide text-muted-foreground uppercase">Footage</div>
|
| 336 |
<div class="mt-0.5 font-heading text-2xl tabular-nums">
|
| 337 |
{totalHours < 1 ? totalHours.toFixed(1) : Math.round(totalHours)}<span
|
| 338 |
+
class="text-base font-medium text-muted-foreground/60">h</span
|
| 339 |
>
|
| 340 |
</div>
|
| 341 |
</div>
|
|
|
|
| 435 |
class="font-medium text-foreground underline decoration-foreground/30 underline-offset-4 transition hover:decoration-foreground"
|
| 436 |
>SentientX</a
|
| 437 |
>
|
| 438 |
+
team for their careful review and feedback on this dataset, to
|
| 439 |
+
<a
|
| 440 |
+
href="https://huggingface.co/"
|
| 441 |
+
target="_blank"
|
| 442 |
+
rel="noreferrer noopener"
|
| 443 |
+
class="font-medium text-foreground underline decoration-foreground/30 underline-offset-4 transition hover:decoration-foreground"
|
| 444 |
+
>Hugging Face</a
|
| 445 |
+
>
|
| 446 |
+
for the grant covering dataset hosting, and to
|
| 447 |
+
<a
|
| 448 |
+
href="https://www.runpod.io/"
|
| 449 |
+
target="_blank"
|
| 450 |
+
rel="noreferrer noopener"
|
| 451 |
+
class="font-medium text-foreground underline decoration-foreground/30 underline-offset-4 transition hover:decoration-foreground"
|
| 452 |
+
>RunPod</a
|
| 453 |
+
>
|
| 454 |
+
(via
|
| 455 |
+
<a
|
| 456 |
+
href="https://x.com/NERDDISCO"
|
| 457 |
+
target="_blank"
|
| 458 |
+
rel="noreferrer noopener"
|
| 459 |
+
class="font-medium text-foreground underline decoration-foreground/30 underline-offset-4 transition hover:decoration-foreground"
|
| 460 |
+
>@NERDDISCO</a
|
| 461 |
+
>) for the $2,500 compute grant <span aria-hidden="true">❤️</span>
|
| 462 |
</p>
|
| 463 |
</section>
|
| 464 |
|