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

Results

Every stored metric, newest run first. Completed runs only unless you ask otherwise: a metric from a run that stopped halfway measured a different set of cases than the row beside it.

Clear
{% if error %} {% elif results is none or results.rows | length == 0 %}

No results match

Nothing has been measured under these filters yet. Clear them, or start a run.

{% else %}

{{ results.rows | length }} rows{% if results.has_more %}, more available{% endif %}. Export all as CSV · Export all as JSON

{% for row in results.rows %} {% endfor %}
Stored metrics. {% if results.has_more %} More rows match than fit on this page, so column sorting is off: sorting a page would sort the wrong dataset. Narrow the filters, or follow the next-page link. {% else %} This page holds every row the query matched, so sorting a column sorts the whole result. {% endif %}
Metric Value Unit n Excluded Stddev CV Model Suite Suite version Test Machine Runtime profile Run status Created Raw source
{{ row.metric_key }} {% if row.numeric_value is none %} {% else %}{{ '%.6g' % row.numeric_value }}{% endif %} {{ row.unit }} {{ row.sample_count }} {{ row.excluded_count }} {% if row.stddev is none %}{% else %}{{ '%.4g' % row.stddev }}{% endif %} {% if row.coefficient_of_variation is none %}{% else %}{{ '%.3g' % row.coefficient_of_variation }}{% endif %} {{ row.model_canonical_id }} {{ row.suite_key }} {{ row.suite_version }} {{ row.run_test_key or '—' }} {{ row.machine_fingerprint[:12] }}… {{ row.runtime_profile_hash[:12] }}… {{ row.run_status }} {{ row.run_created_at | timestamp }} {{ row.run_id[:8] }}
{% if results.next_cursor %}

Next page

{% endif %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}