Spaces:
Sleeping
Sleeping
File size: 5,254 Bytes
e17f3ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>SAP RPT-1 OSS Benchmarking โ Model Arena</title>
<meta name="description" content="Upload your CSV and instantly benchmark XGBoost, LightGBM, CatBoost and SAP RPT-1 OSS. Get a detailed model recommendation for your use case."/>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="/static/style.css?v=2"/>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.2/dist/chart.umd.min.js"></script>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<a href="/static/landing.html" class="nav-brand" id="nav-logo">ModelMatrix</a>
<div class="nav-actions">
<a href="/static/uploader.html" class="nav-btn-upload">Upload</a>
<button class="nav-toggle" id="theme-toggle" aria-label="Toggle theme">
<svg id="theme-icon-dark" class="theme-icon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" style="display: none;"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
<svg id="theme-icon-light" class="theme-icon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="5"/><path d="M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72l1.42 1.42M1 12h2m18 12h2M4.22 19.78l1.42-1.42m12.72-12.72l1.42-1.42"/></svg>
</button>
</div>
</div>
</nav>
<main class="container">
<section id="results-section" class="section" hidden>
<!-- Dataset info bar -->
<div class="info-bar" id="info-bar"></div>
<div class="actions-bar">
<button id="export-csv-btn" class="btn-ghost">๐ Download CSV</button>
<button id="export-json-btn" class="btn-ghost">๐ Export Results (JSON)</button>
</div>
<!-- KPI cards -->
<h2 class="section-title">Summary <span class="title-accent">Statistics</span></h2>
<div class="kpi-grid" id="kpi-grid"></div>
<!-- Legend -->
<div class="legend" id="legend"></div>
<!-- Charts -->
<h2 class="section-title">Model <span class="title-accent">Comparison</span></h2>
<div class="charts-grid" id="charts-grid"></div>
<!-- Full table -->
<h2 class="section-title">Full <span class="title-accent">Metrics Table</span></h2>
<div class="table-card">
<div class="table-scroll">
<table id="results-table" class="results-table">
<thead id="results-thead"></thead>
<tbody id="results-tbody"></tbody>
</table>
</div>
</div>
<!-- Recommendation -->
<h2 class="section-title">๐ Model <span class="title-accent">Recommendation</span></h2>
<div id="recommendation-grid" class="rec-grid"></div>
<!-- Ensemble Analysis -->
<h2 class="section-title" id="ensemble-section-title">๐งฉ Ensemble <span class="title-accent">Analysis</span></h2>
<div id="ensemble-grid" class="ensemble-grid"></div>
<!-- Statistical Rigor -->
<h2 class="section-title">โ๏ธ Statistical <span class="title-accent">Rigor & Ranking</span></h2>
<div class="rigor-card" id="rigor-section">
<div class="rigor-header">
<div id="friedman-badge" class="badge-pill">Analyzing significance...</div>
<div class="rigor-meta">Based on rank-distribution across all cross-validation folds.</div>
</div>
<div class="rigor-table-wrapper">
<table class="rigor-table">
<thead>
<tr>
<th>Model</th>
<th>Average Rank (1 is best)</th>
<th>Fold Win Rate</th>
<th>Stability</th>
</tr>
</thead>
<tbody id="rigor-tbody">
<!-- Injected by JS -->
</tbody>
</table>
</div>
</div>
<!-- Interactive Playground -->
<h2 class="section-title">๐ฎ Interactive <span class="title-accent">Playground</span></h2>
<div class="playground-card" id="playground-section">
<div class="playground-layout">
<div class="playground-inputs">
<p class="playground-intro">Adjust the inputs below to get a live prediction from the best-performing model. Changes update instantly โ no page reload needed.</p>
<div id="playground-form" class="playground-grid">
<!-- Inputs injected by JS -->
</div>
</div>
<div class="playground-output">
<div class="output-card">
<div class="output-label">Live Prediction</div>
<div id="prediction-value" class="prediction-main">โ</div>
<div id="prediction-sub" class="prediction-sub">Select or adjust inputs</div>
<div id="probability-bars" class="prob-container"></div>
</div>
</div>
</div>
</div>
<!-- Reset -->
<div class="reset-bar">
<button id="reset-btn" class="btn-ghost-lg">โฉ Upload a New Dataset</button>
</div>
</section>
</main>
<footer class="footer">
SAP RPT-1 OSS Benchmarking ยท Built with FastAPI & Chart.js
</footer>
<script src="/static/app.js?v=2"></script>
</body>
</html>
|