Create index.html
Browse files- index.html +40 -0
index.html
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<title>WorldScore Leaderboard</title>
|
| 6 |
+
<link rel="stylesheet" href="style.css" />
|
| 7 |
+
</head>
|
| 8 |
+
|
| 9 |
+
<body>
|
| 10 |
+
<main class="page">
|
| 11 |
+
|
| 12 |
+
<!-- Intro Section -->
|
| 13 |
+
<div id="intro" class="intro">
|
| 14 |
+
<h1>WorldScore Leaderboard</h1>
|
| 15 |
+
|
| 16 |
+
<div class="intro-links">
|
| 17 |
+
<a href="https://arxiv.org/abs/2504.00983" target="_blank">Paper</a> |
|
| 18 |
+
<a href="https://haoyi-duan.github.io/WorldScore/" target="_blank">Website</a> |
|
| 19 |
+
<a href="https://github.com/haoyi-duan/WorldScore" target="_blank">Code</a> |
|
| 20 |
+
<a href="https://huggingface.co/datasets/Howieeeee/WorldScore" target="_blank">Dataset</a> |
|
| 21 |
+
<a href="https://github.com/haoyi-duan/WorldScore?tab=readme-ov-file#leaderboard" target="_blank">Join Leaderboard</a>
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
<p class="intro-text">
|
| 25 |
+
🏆 Welcome to the leaderboard of <b>WorldScore</b>, the first unified evaluation benchmark for world generation.
|
| 26 |
+
</p>
|
| 27 |
+
|
| 28 |
+
<hr class="divider">
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
+
<!-- Table -->
|
| 32 |
+
<div id="table-container" class="table-container">
|
| 33 |
+
Loading leaderboard...
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
</main>
|
| 37 |
+
|
| 38 |
+
<script src="script.js"></script>
|
| 39 |
+
</body>
|
| 40 |
+
</html>
|