{% extends "base.html" %} {% block title %}Sample {{ s.sample_id }} - lm-eval-ledger{% endblock %} {% block content %}
score {{ "%g"|format(s.score or 0) }}
{% if s.verified_score is not none %} · verified
{{ "%g"|format(s.verified_score) }}
{% if s.verifier_verdicts %}({{ s.verifier_verdicts }}){% endif %}
{% endif %}
· extracted {{ s.extracted or "∅" }}
· stop {{ s.stop_reason }}
gold:
{{ s.gold }}
{% if s.gold_data %}
{{ s.gold_data|trunc(4000) }}{{ s.prompt }}
{% if s.prompt_full and s.prompt_full != s.prompt %}
{{ s.prompt_full }}{{ r.get("extracted") or "∅" }}
· {{ r.get("stop_reason") }} · correct {{ r.get("correct") }}{{ thinking }}{{ answer }}
{% else %}
No answer text after the thinking block - generation ended inside it ({{ r.get("stop_reason") }}). The full output is under "thinking" above.
{% endif %}{{ r.get("text", "") }}{{ r.get("text", "") }}
{% endif %}
{% for sib in siblings %} {% if sib.sample_pk == s.sample_pk %} {{ sib.model_tag }} (bench {{ sib.benchmark_id }}) · {{ "%g"|format(sib.sc) }} {% else %} {{ sib.model_tag }} (bench {{ sib.benchmark_id }}) · {{ "%g"|format(sib.sc) }} {% endif %} {% endfor %}