File size: 1,592 Bytes
6c5c210 | 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 | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MapEHR Bench Leaderboard</title>
<style>
body {
font: 16px system-ui, sans-serif; margin: 2rem auto;
max-width: 90rem; padding: 0 1rem;
}
input { margin-bottom: 1rem; padding: .6rem; width: min(30rem, 90%); }
table { border-collapse: collapse; width: 100%; }
th, td { border-bottom: 1px solid #ddd; padding: .65rem; text-align: left; }
th { background: #f5f5f5; }
</style>
</head>
<body>
<h1>MapEHR Bench Leaderboard</h1>
<p>Reproducible local clinical-code normalization.</p>
<label for="filter">Filter submissions</label><br>
<input id="filter" type="search" placeholder="Model, build, or status">
<table>
<caption>1 accepted submission(s)</caption>
<thead><tr><th>Rank</th><th>Model Id</th><th>Model Revision</th><th>Benchmark Build Id</th><th>Macro Top1 Accuracy</th><th>Macro Recall At 5</th><th>Coverage</th><th>Evaluation Status</th></tr></thead>
<tbody><tr><td>1</td><td>mapehr/empty-baseline</td><td>baseline-v1</td><td>052b436ed3cd0b79b0a8</td><td>0.01538076045785088</td><td>0.01538076045785088</td><td>0.0</td><td>ci_reproduced</td></tr></tbody>
</table>
<script>
document.querySelector('#filter').addEventListener('input', event => {
const query = event.target.value.toLowerCase();
document.querySelectorAll('tbody tr').forEach(row => {
row.hidden = !row.textContent.toLowerCase().includes(query);
});
});
</script>
</body>
</html>
|