{% extends "base.html" %} {% block title %}Starter packs — FreeWeight{% endblock %} {% block content %}

Starter packs

Four goals ship with FreeWeight, complete with tasks, criteria, proposed rules and a worked set of graded calibration samples. They are here to be read: down this page, the share of weight scored deterministically rises from 40 % to 90 %, and that is the single most useful thing to internalise about writing a measurable rubric — the better you understand what you want, the less of it needs a judge.

They are starters, not defaults. A goal whose criteria and tasks you have not edited is badged unforked in the UI, in its results and in its exports. A voice measured on somebody else's prompts is not your voice.
{% if error %} {% endif %} {% for pack, calibration in starters %}

{{ pack.reading_position }}. {{ pack.name }}

{{ pack.intent }}

Scored by rules
{{ '%.0f' % (pack.deterministic_weight * 100) }}%

Free, exact, and never disagrees with you.

Scored by a jury
{{ '%.0f' % (pack.judged_weight * 100) }}%

This is what calibration has to measure.

Criteria
{{ pack.criteria_count }}

{{ pack.task_count }} starter tasks, all replaceable.

{% if calibration %}
Worked calibration
{{ calibration.samples | length }}

graded samples, reproducing κw {{ '%.2f' % calibration.summary.weighted_kappa_w }} · validity {{ '%.2f' % calibration.summary.judge_validity_factor }}

{% endif %}

{{ pack.carries }}

{% if calibration %}
What this pack's worked calibration reproduces
{% for criterion, figures in calibration.expected | dictsort %} {% endfor %}
Under the pack's own partition seed and the reference jury described in the pack. Every coefficient carries its n_holdout: a κw without its n is a number pretending to be a fact.
Criterion κw ρ MAE Bias nholdout Band
{{ criterion }} {{ '%.3f' % figures['kappa_w'] }} {{ '%.3f' % figures['rho'] }} {{ '%.2f' % figures['mae'] }} {{ '%+.2f' % figures['bias'] }} {{ figures['n_holdout'] }} {{ figures['band'] | replace('_', ' ') }}
{% endif %}

Opens step 2 with these criteria, so the badge comes off in one sitting.

{% endfor %} {% endblock %}