{% extends "base.html" %} {% block title %}Leaderboard — OCR Bench{% endblock %} {% block content %}
{{ repo_id }}
| # | Model | Judge ELO | {% if has_ci %}95% CI | {% endif %}Wins | Losses | Ties | Win% | {% if has_human_elo %}Human ELO | H-Win% | {% endif %}
|---|---|---|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ row.model_short }} | {{ row.elo }} | {% if has_ci %}{{ row.elo_low }}–{{ row.elo_high }} | {% endif %}{{ row.wins }} | {{ row.losses }} | {{ row.ties }} | {{ row.win_pct }}% | {% if has_human_elo %}{{ row.human_elo if row.human_elo is not none else "—" }} | {{ row.human_win_pct if row.human_win_pct is not none else "—" }} | {% endif %}