{% import "simple_utils.html" as simple_utils %} {% import "utils.html" as utils %} {% set db = request.get_db() %} {% set run = db.getRun(id) %} {% set machine = run.machine %} {% extends "layout.html" %} {% set components = [(tag, db_url_for("simple_overview", tag=tag)), ('machine', db_url_for("simple_machine", tag=tag, id=machine.id)), ('run', db_url_for("simple_run", tag=tag, id=machine.id))] %} {% block head %} {% endblock %} {% block title %}Run Results{% endblock %} {# Add JS to initialize the graph. #} {% block onload %}init(){% endblock %} {% block javascript %} function init() { graph = new Graph2D("graph"); graph.clearColor = [1, 1, 1]; {{ graph_plots }} graph.xAxis.format = graph.xAxis.formats.normal; graph.draw(); } {% endblock %} {% block body %} {% call simple_utils.simple_run_page(tag, machine, run, compare_to, neighboring_runs) %} {{ utils.render_popup_begin('view_options', 'View Options', true) }}
Show Median Absolute Deviation:
Show Standard Deviation:
Show Linear Regression:
{# Add all the hidden fields. #} {% for name,value in request.args.items() %} {% if name.startswith('test.') or name.startswith('pset.') %}
{% endif %} {% endfor %}
{{ utils.render_popup_end() }}

Graph

{% for name,col in legend %} {% endfor %}
Test
  {{name}}
Shift-Left Mouse: Pan
Alt/Meta-Left Mouse: Zoom
Wheel: Zoom (Shift Slows)

Plots: {{ num_plots }}
Num Points: {{ num_points }}

Deltas

{% for deltas in plot_deltas %} {% set (name,col) = legend[loop.index0] %}

{{name}}

{% for (pct,(r0,t0,mad0,med0),(r1,t1,mad1,med1)) in deltas %} {{pct|aspctcell(delta=true)|safe}} {% endfor %}
Revision Value MAD Med - Min
Current Previous Delta (%) Current Previous # Revs Current Previous Current Previous
{{r1}} {{r0}}{{ "%.4f" % t1 }}{{ "%.4f" % t0}} {{ r1 - r0 }} {{ "%.4f" % mad1 }}{{ "%.4f" % mad0 }} {{ "%.4f" % (med1-t1) }}{{ "%.4f" % (med0-t0) }}
{% endfor %}

Revisions to Sample

{% for rev in new_sample_list %} {{ rev }} {% endfor %}

Revisions to Resample

{% for rev in resample_list|sort %} {{ rev }} {% endfor %}

{% endcall %} {% endblock %}