{% extends "base.html" %} {% block title %}{{ goal.pack.name }} results — FreeWeight{% endblock %} {% block content %}

{{ goal.pack.name }}

{% if error %} {% else %}

{{ goal.pack.intent }}

{{ goal.pack.capability_id }} · {{ goal.goal_hash }} {% if goal.pack.unforked %} unforked {% endif %}

{% if goal.pack.unforked %}
This goal is running unedited starter content. Its results are badged unforked here, in the dashboard and in every export. Edit its criteria or its tasks and the badge comes off.
{% endif %}

Score method mix

Beside the score, always. A 0.82 that is 80 % rules is a different fact from a 0.82 a jury produced, and this is what tells the two apart.

{% for rung in ['rule', 'reference', 'human', 'judge'] %}
{{ rung }}
{{ '%.0f' % (mix[rung] * 100) }}%

{% if rung == 'rule' %}Deterministic, free, and never disagrees with you. {% elif rung == 'reference' %}Deterministic against your own ground truth. {% elif rung == 'human' %}You graded it. Validity 1.0 by definition. {% else %}A jury graded it. This is the part calibration has to measure.{% endif %}

{% endfor %}

Calibration

{% if outcome %}
State
{{ outcome.verdict.state.value | replace('_', ' ') }}

{% if outcome.verdict.state.value == 'calibrated' %}Evidence is emitted. {% else %}No evidence is emitted — not discounted evidence, none.{% endif %}

Weighted κw
{{ '%.2f' % outcome.verdict.weighted_kappa_w if outcome.verdict.weighted_kappa_w is not none else '—' }}

over nholdout = {{ outcome.verdict.n_holdout }}

Judge validity factor
{{ '%.2f' % outcome.verdict.judge_validity_factor }}

The sixth confidence factor (ADR-0032 §2).

Read the full agreement report

{% else %}

This goal has never been calibrated. It will still run, and every sample will be inspectable — it just cannot emit capability evidence yet. Grade its samples to change that.

{% endif %}

Runs

{% if rows %}
{% for row in rows %} {% endfor %}
Every stored metric of this goal, newest run first. A different goal_hash is a different suite version, so two rubrics never share a row.
Metric Value n Suite version Model Raw source
{{ row.metric_key }} {% if row.numeric_value is none %} {% else %}{{ '%.4g' % row.numeric_value }}{% endif %} {{ row.unit }} {{ row.sample_count }} {{ row.suite_version }} {{ row.model_canonical_id }} {{ row.run_id[:8] }}
{% else %}

No completed run of this goal yet.

freeweight run start --model <model> --suite goal.{{ goal.slug }}
{% endif %}

Exports

{% endif %} {% endblock %}