{% extends "base.html" %} {% block content %}

TES Trends

{# ---- TASK TYPE DISTRIBUTION ---- #}

Task Type Distribution

Token baselines calibrated per task type — see domain of validity.
{% if task_type_rows %} {% for row in task_type_rows %} {% endfor %}
Task TypeCount
{{ row.task_type }} {{ row.cnt }}
{% else %}

No sessions scored yet.

{% endif %} {# ---- TOKEN BAND DISTRIBUTION ---- #}

Token Band Distribution

above_p75 = above the 75th percentile of quality-gated sessions in the reference corpus. See domain of validity.
{% if band_verdict_rows %} {% for row in band_verdict_rows %} {% endfor %}
Band VerdictCount
{% if row.band_verdict == "above_p75" %} {{ row.band_verdict }} {% elif row.band_verdict == "below_p25" %} {{ row.band_verdict }} {% elif row.band_verdict == "within_band" %} {{ row.band_verdict }} {% else %} {{ row.band_verdict }} {% endif %} {{ row.cnt }}
{% else %}

No sessions scored yet.

{% endif %} {# ---- WASTE EVENTS OVER TIME ---- #}

Waste Events Over Time (last 50 sessions)

{% if waste_over_time_rows %} {% for row in waste_over_time_rows %} {% endfor %}
Scored AtSession IDWaste Events
{{ row.scored_at[:19] | replace("T", " ") }} {{ row.session_id[:16] }}… {{ row.waste_event_count }}
{% else %}

No sessions scored yet.

{% endif %} {% endblock %}