Spaces:
Running
Running
Update index.html
Browse files- index.html +23 -20
index.html
CHANGED
|
@@ -222,11 +222,11 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 222 |
|
| 223 |
<!-- ===== TABS ===== -->
|
| 224 |
<div class="tab-bar" id="WM_TAB_BAR">
|
| 225 |
-
<div class="tab on" data-tab="lb">π Leaderboard</div>
|
| 226 |
-
<div class="tab" data-tab="cats">π Categories</div>
|
| 227 |
-
<div class="tab" data-tab="structure">π Structure</div>
|
| 228 |
-
<div class="tab" data-tab="submit">π Submit</div>
|
| 229 |
-
<div class="tab" data-tab="about">βΉοΈ About</div>
|
| 230 |
</div>
|
| 231 |
|
| 232 |
<!-- ===== TAB: LEADERBOARD ===== -->
|
|
@@ -238,9 +238,9 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 238 |
<th class="c-model" style="text-align:left">Model</th>
|
| 239 |
<th title="WM Score (0~1000)">WM Score<span class="sa">β</span></th>
|
| 240 |
<th>Grade</th>
|
| 241 |
-
<th class="p1-col" title="π Perception (0~250)">π
|
| 242 |
-
<th class="p2-col" title="π§ Cognition (0~450)">π§
|
| 243 |
-
<th class="p3-col" title="π₯ Embodiment (0~300)">π₯
|
| 244 |
<th title="FPS">FPS<span class="sa">β</span></th>
|
| 245 |
<th title="Cognitive Latency (ms)">Lat(ms)<span class="sa">β</span></th>
|
| 246 |
<th>Track</th>
|
|
@@ -735,7 +735,7 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 735 |
</div>
|
| 736 |
<div class="card">
|
| 737 |
<h3>π VIDRAFT PROMETHEUS</h3>
|
| 738 |
-
<p>
|
| 739 |
</div>
|
| 740 |
<div class="card">
|
| 741 |
<h3>π Version History</h3>
|
|
@@ -747,7 +747,7 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 747 |
</p>
|
| 748 |
</div>
|
| 749 |
<div class="card">
|
| 750 |
-
<h3>π
|
| 751 |
<div style="background:var(--bg2);border-radius:6px;padding:10px;font-family:var(--mono);font-size:8.5px;color:var(--text-sec);line-height:1.8">
|
| 752 |
@dataset{wmbench2026,<br>
|
| 753 |
title={World Model Bench},<br>
|
|
@@ -759,7 +759,7 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 759 |
</div>
|
| 760 |
<div class="card">
|
| 761 |
<h3>βοΈ License</h3>
|
| 762 |
-
<p>
|
| 763 |
</div>
|
| 764 |
</div>
|
| 765 |
</div>
|
|
@@ -768,6 +768,13 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 768 |
|
| 769 |
<!-- ===== DATA & LOGIC ===== -->
|
| 770 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 771 |
(function(){
|
| 772 |
/* ββ λ°μ΄ν° ββ */
|
| 773 |
var LB_DATA = [
|
|
@@ -975,14 +982,7 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 975 |
|
| 976 |
/* ββ μ΄λ²€νΈ λ°μΈλ© ββ */
|
| 977 |
function bindEvents(){
|
| 978 |
-
/* ν */
|
| 979 |
-
var tabBar=$('WM_TAB_BAR');
|
| 980 |
-
if(tabBar){
|
| 981 |
-
tabBar.addEventListener('click',function(e){
|
| 982 |
-
var tab=e.target.closest('[data-tab]');
|
| 983 |
-
if(tab) showTab(tab.getAttribute('data-tab'));
|
| 984 |
-
});
|
| 985 |
-
}
|
| 986 |
/* λ€ν¬λͺ¨λ */
|
| 987 |
var darkBtn=$('WM_DARK_BTN');
|
| 988 |
if(darkBtn){
|
|
@@ -1005,7 +1005,10 @@ body.dark thead{background:var(--surface-alt)!important;}
|
|
| 1005 |
renderLB();
|
| 1006 |
renderCatTable();
|
| 1007 |
bindEvents();
|
| 1008 |
-
setTimeout(function(){
|
|
|
|
|
|
|
|
|
|
| 1009 |
}
|
| 1010 |
|
| 1011 |
/* Gradio gr.HTML()μ DOMContentLoaded μ΄νμ μ£Όμ
λλ―λ‘ μ¦μ μ€ν */
|
|
|
|
| 222 |
|
| 223 |
<!-- ===== TABS ===== -->
|
| 224 |
<div class="tab-bar" id="WM_TAB_BAR">
|
| 225 |
+
<div class="tab on" data-tab="lb" onclick="WMshowTab('lb',this)">π Leaderboard</div>
|
| 226 |
+
<div class="tab" data-tab="cats" onclick="WMshowTab('cats',this)">π Categories</div>
|
| 227 |
+
<div class="tab" data-tab="structure" onclick="WMshowTab('structure',this)">π Structure</div>
|
| 228 |
+
<div class="tab" data-tab="submit" onclick="WMshowTab('submit',this)">π Submit</div>
|
| 229 |
+
<div class="tab" data-tab="about" onclick="WMshowTab('about',this)">βΉοΈ About</div>
|
| 230 |
</div>
|
| 231 |
|
| 232 |
<!-- ===== TAB: LEADERBOARD ===== -->
|
|
|
|
| 238 |
<th class="c-model" style="text-align:left">Model</th>
|
| 239 |
<th title="WM Score (0~1000)">WM Score<span class="sa">β</span></th>
|
| 240 |
<th>Grade</th>
|
| 241 |
+
<th class="p1-col" title="π Perception (0~250)">π Perception<span class="sa">β</span></th>
|
| 242 |
+
<th class="p2-col" title="π§ Cognition (0~450)">π§ Cognition<span class="sa">β</span></th>
|
| 243 |
+
<th class="p3-col" title="π₯ Embodiment (0~300)">π₯ Embodiment<span class="sa">β</span></th>
|
| 244 |
<th title="FPS">FPS<span class="sa">β</span></th>
|
| 245 |
<th title="Cognitive Latency (ms)">Lat(ms)<span class="sa">β</span></th>
|
| 246 |
<th>Track</th>
|
|
|
|
| 735 |
</div>
|
| 736 |
<div class="card">
|
| 737 |
<h3>π VIDRAFT PROMETHEUS</h3>
|
| 738 |
+
<p>Current baseline. Open LLM brain (any LLM pluggable) + FloodDiffusion-VIDRAFT motion engine. RTX5070 (local/16GB). 47 FPS. WM Score 726/1000 (Grade B).</p>
|
| 739 |
</div>
|
| 740 |
<div class="card">
|
| 741 |
<h3>π Version History</h3>
|
|
|
|
| 747 |
</p>
|
| 748 |
</div>
|
| 749 |
<div class="card">
|
| 750 |
+
<h3>π Citation</h3>
|
| 751 |
<div style="background:var(--bg2);border-radius:6px;padding:10px;font-family:var(--mono);font-size:8.5px;color:var(--text-sec);line-height:1.8">
|
| 752 |
@dataset{wmbench2026,<br>
|
| 753 |
title={World Model Bench},<br>
|
|
|
|
| 759 |
</div>
|
| 760 |
<div class="card">
|
| 761 |
<h3>βοΈ License</h3>
|
| 762 |
+
<p>Dataset: <b>CC-BY-SA-4.0</b><br>Scoring code: <b>Apache 2.0</b><br>Free to use and cite. Attribution required.</p>
|
| 763 |
</div>
|
| 764 |
</div>
|
| 765 |
</div>
|
|
|
|
| 768 |
|
| 769 |
<!-- ===== DATA & LOGIC ===== -->
|
| 770 |
<script>
|
| 771 |
+
function WMshowTab(id,clicked){
|
| 772 |
+
document.querySelectorAll('.tpane').forEach(function(p){p.classList.remove('on');});
|
| 773 |
+
document.querySelectorAll('#WM_TAB_BAR .tab').forEach(function(t){t.classList.remove('on');});
|
| 774 |
+
var pane=document.getElementById(id);
|
| 775 |
+
if(pane) pane.classList.add('on');
|
| 776 |
+
if(clicked) clicked.classList.add('on');
|
| 777 |
+
}
|
| 778 |
(function(){
|
| 779 |
/* ββ λ°μ΄ν° ββ */
|
| 780 |
var LB_DATA = [
|
|
|
|
| 982 |
|
| 983 |
/* ββ μ΄λ²€νΈ λ°μΈλ© ββ */
|
| 984 |
function bindEvents(){
|
| 985 |
+
/* ν β onclickμΌλ‘ μ²λ¦¬ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 986 |
/* λ€ν¬λͺ¨λ */
|
| 987 |
var darkBtn=$('WM_DARK_BTN');
|
| 988 |
if(darkBtn){
|
|
|
|
| 1005 |
renderLB();
|
| 1006 |
renderCatTable();
|
| 1007 |
bindEvents();
|
| 1008 |
+
setTimeout(function(){
|
| 1009 |
+
try{ initCharts(); }
|
| 1010 |
+
catch(e){ console.warn('WM Bench chart error:',e); }
|
| 1011 |
+
},200);
|
| 1012 |
}
|
| 1013 |
|
| 1014 |
/* Gradio gr.HTML()μ DOMContentLoaded μ΄νμ μ£Όμ
λλ―λ‘ μ¦μ μ€ν */
|