lbreitkopf commited on
Commit ·
f6347cd
1
Parent(s): 1bd245c
changes :)
Browse files- index.html +49 -15
index.html
CHANGED
|
@@ -136,6 +136,12 @@
|
|
| 136 |
.figure-card img { cursor: zoom-in; }
|
| 137 |
body.modal-open { overflow:hidden; } /* prevent background scroll */
|
| 138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
</style>
|
| 140 |
</head>
|
| 141 |
<body>
|
|
@@ -173,9 +179,16 @@
|
|
| 173 |
Objects crash, bounce, and shatter - our benchmark of audiovisual object drops
|
| 174 |
probes whether models benefit from adding <strong>sound</strong> when reasoning about physics.
|
| 175 |
</p>
|
| 176 |
-
<
|
| 177 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
<source src="thumbnail.mp4" type="video/mp4" />
|
|
|
|
| 179 |
<source src="thumbnail.webm" type="video/webm" />
|
| 180 |
</video>
|
| 181 |
</section>
|
|
@@ -210,7 +223,7 @@
|
|
| 210 |
<th scope="col">Modality</th>
|
| 211 |
<th scope="col">N</th>
|
| 212 |
<th scope="col">Top‑1 Acc (%)</th>
|
| 213 |
-
<th scope="col">Top‑
|
| 214 |
<th scope="col">Updated</th>
|
| 215 |
</tr>
|
| 216 |
</thead>
|
|
@@ -221,21 +234,21 @@
|
|
| 221 |
<!-- Deine Daten (inline JSON) -->
|
| 222 |
<script id="leaderboard-data" type="application/json">{
|
| 223 |
"rows": [
|
| 224 |
-
{"model":"Gemini‑2.5 Flash (no think)", "modality":"A", "Top1AccuracyinPercent":20.0, "
|
| 225 |
-
{"model":"Gemini‑2.5 Flash (no think)", "modality":"AV", "Top1AccuracyinPercent":53.4, "
|
| 226 |
-
{"model":"Gemini‑2.5 Flash (no think)", "modality":"V", "Top1AccuracyinPercent":48.2, "
|
| 227 |
|
| 228 |
-
{"model":"Gemini‑2.5 Flash (think)", "modality":"A", "Top1AccuracyinPercent":24.1, "
|
| 229 |
-
{"model":"Gemini‑2.5 Flash (think)", "modality":"AV", "Top1AccuracyinPercent":58.5, "
|
| 230 |
-
{"model":"Gemini‑2.5 Flash (think)", "modality":"V", "Top1AccuracyinPercent":50.9, "
|
| 231 |
|
| 232 |
-
{"model":"Gemini‑2.5 Pro (think)", "modality":"A", "Top1AccuracyinPercent":17.3, "
|
| 233 |
-
{"model":"Gemini‑2.5 Pro (think)", "modality":"AV", "Top1AccuracyinPercent":61.8, "
|
| 234 |
-
{"model":"Gemini‑2.5 Pro (think)", "modality":"V", "Top1AccuracyinPercent":56.3, "
|
| 235 |
|
| 236 |
-
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"A", "Top1AccuracyinPercent":10.9, "
|
| 237 |
-
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"AV", "Top1AccuracyinPercent":38.7, "
|
| 238 |
-
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"V", "Top1AccuracyinPercent":38.5, "
|
| 239 |
]
|
| 240 |
}</script>
|
| 241 |
</section>
|
|
@@ -434,6 +447,27 @@
|
|
| 434 |
})();
|
| 435 |
</script>
|
| 436 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 437 |
|
| 438 |
</body>
|
| 439 |
</html>
|
|
|
|
| 136 |
.figure-card img { cursor: zoom-in; }
|
| 137 |
body.modal-open { overflow:hidden; } /* prevent background scroll */
|
| 138 |
|
| 139 |
+
.btn-row{ display:flex; gap:.6rem; justify-content:center; flex-wrap:wrap; margin:.6rem 0 .2rem; }
|
| 140 |
+
.btn.btn-disabled{ opacity:.6; cursor:not-allowed; pointer-events:none; }
|
| 141 |
+
|
| 142 |
+
/* push the hero video down so the button never overlaps */
|
| 143 |
+
.hero > video{ margin-top:.8rem; display:block; max-width:980px; width:100%; border-radius:.8rem; border:var(--border); background:var(--card); }
|
| 144 |
+
|
| 145 |
</style>
|
| 146 |
</head>
|
| 147 |
<body>
|
|
|
|
| 179 |
Objects crash, bounce, and shatter - our benchmark of audiovisual object drops
|
| 180 |
probes whether models benefit from adding <strong>sound</strong> when reasoning about physics.
|
| 181 |
</p>
|
| 182 |
+
<!-- Button row: examples + PDF -->
|
| 183 |
+
<div class="btn-row">
|
| 184 |
+
<a class="btn" href="#media">See example Videos and Results</a>
|
| 185 |
+
<a id="paperLink" href="#" class="btn btn-disabled" aria-disabled="true">📄 PDF coming soon</a>
|
| 186 |
+
</div>
|
| 187 |
+
|
| 188 |
+
<!-- Hero video (pushed down a bit) -->
|
| 189 |
+
<video autoplay muted loop playsinline poster="cover.png">
|
| 190 |
<source src="thumbnail.mp4" type="video/mp4" />
|
| 191 |
+
<!-- Remove the webm line unless you add it later -->
|
| 192 |
<source src="thumbnail.webm" type="video/webm" />
|
| 193 |
</video>
|
| 194 |
</section>
|
|
|
|
| 223 |
<th scope="col">Modality</th>
|
| 224 |
<th scope="col">N</th>
|
| 225 |
<th scope="col">Top‑1 Acc (%)</th>
|
| 226 |
+
<th scope="col">Top‑3 Acc (%)</th>
|
| 227 |
<th scope="col">Updated</th>
|
| 228 |
</tr>
|
| 229 |
</thead>
|
|
|
|
| 234 |
<!-- Deine Daten (inline JSON) -->
|
| 235 |
<script id="leaderboard-data" type="application/json">{
|
| 236 |
"rows": [
|
| 237 |
+
{"model":"Gemini‑2.5 Flash (no think)", "modality":"A", "Top1AccuracyinPercent":20.0, "Top3AccuracyinPercent":null, "N":993},
|
| 238 |
+
{"model":"Gemini‑2.5 Flash (no think)", "modality":"AV", "Top1AccuracyinPercent":53.4, "Top3AccuracyinPercent":null, "N":993},
|
| 239 |
+
{"model":"Gemini‑2.5 Flash (no think)", "modality":"V", "Top1AccuracyinPercent":48.2, "Top3AccuracyinPercent":null, "N":993},
|
| 240 |
|
| 241 |
+
{"model":"Gemini‑2.5 Flash (think)", "modality":"A", "Top1AccuracyinPercent":24.1, "Top3AccuracyinPercent":null, "N":990},
|
| 242 |
+
{"model":"Gemini‑2.5 Flash (think)", "modality":"AV", "Top1AccuracyinPercent":58.5, "Top3AccuracyinPercent":null, "N":993},
|
| 243 |
+
{"model":"Gemini‑2.5 Flash (think)", "modality":"V", "Top1AccuracyinPercent":50.9, "Top3AccuracyinPercent":null, "N":993},
|
| 244 |
|
| 245 |
+
{"model":"Gemini‑2.5 Pro (think)", "modality":"A", "Top1AccuracyinPercent":17.3, "Top3AccuracyinPercent":null, "N":819},
|
| 246 |
+
{"model":"Gemini‑2.5 Pro (think)", "modality":"AV", "Top1AccuracyinPercent":61.8, "Top3AccuracyinPercent":null, "N":807},
|
| 247 |
+
{"model":"Gemini‑2.5 Pro (think)", "modality":"V", "Top1AccuracyinPercent":56.3, "Top3AccuracyinPercent":null, "N":807},
|
| 248 |
|
| 249 |
+
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"A", "Top1AccuracyinPercent":10.9, "Top3AccuracyinPercent":null, "N":993},
|
| 250 |
+
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"AV", "Top1AccuracyinPercent":38.7, "Top3AccuracyinPercent":null, "N":993},
|
| 251 |
+
{"model":"Qwen2.5‑Omni 7B (local)", "modality":"V", "Top1AccuracyinPercent":38.5, "Top3AccuracyinPercent":null, "N":993}
|
| 252 |
]
|
| 253 |
}</script>
|
| 254 |
</section>
|
|
|
|
| 447 |
})();
|
| 448 |
</script>
|
| 449 |
|
| 450 |
+
<script>
|
| 451 |
+
// Where your PDF will live
|
| 452 |
+
const PDF_PATH = "assets/AVIP_preprint.pdf";
|
| 453 |
+
|
| 454 |
+
async function enablePdfButton(){
|
| 455 |
+
try{
|
| 456 |
+
const res = await fetch(PDF_PATH, { method:"HEAD", cache:"no-store" });
|
| 457 |
+
if(!res.ok) return; // keep disabled state
|
| 458 |
+
const a = document.getElementById("paperLink");
|
| 459 |
+
if(!a) return;
|
| 460 |
+
a.href = PDF_PATH;
|
| 461 |
+
a.target = "_blank";
|
| 462 |
+
a.rel = "noopener";
|
| 463 |
+
a.textContent = "📄 View PDF";
|
| 464 |
+
a.classList.remove("btn-disabled");
|
| 465 |
+
a.setAttribute("aria-disabled","false");
|
| 466 |
+
}catch(e){ /* keep disabled */ }
|
| 467 |
+
}
|
| 468 |
+
document.addEventListener("DOMContentLoaded", enablePdfButton);
|
| 469 |
+
</script>
|
| 470 |
+
|
| 471 |
|
| 472 |
</body>
|
| 473 |
</html>
|