sebench — dashboard

{% if processes %}

Processes

{% for p in processes %} {% endfor %}
NameRunsAvg span (s)Last run
{{ p.name }} {{ p.total_runs }} {{ p.avg_span_s if p.avg_span_s is not none else "—" }} {% if p.last_run_id %}{{ p.last_run_id }}{% else %}—{% endif %}
{% endif %} {% if systems %}

Systems

{% for s in systems %} {% endfor %}
NameDescriptionFile
{{ s.name }} {{ s.description or "—" }} {{ s.rel_path }}
{% endif %} {% if runs %}

Recent runs

{% for r in runs %} {% endfor %}
Run IDSystemDurationSeedHILProcesses
{{ r.run_id }} {{ r.system_name }} {{ r.simulated_duration_s }}s {{ r.seed }} {% if r.hil_flag %}HIL{% else %}—{% endif %} {% for ps in r.process_summaries %} {{ ps.process_name }}: {{ ps.last_phase }} {% else %}—{% endfor %}
{% else %}

No runs yet. Run an experiment with sebench run <experiment.yaml>.

{% endif %}