{% extends "base.html" %} {% block title %}{{ run_name }} - OMNI-X Dashboard{% endblock %} {% block header %}{{ run_name }}{% endblock %} {% block content %}
{{ stats.total }}
Total Tasks
{{ stats.archived }}
Archived
{{ stats.discarded }}
Discarded
{{ stats.wip }}
WIP
{% if stats.success_rate is not none %}
{{ "%.1f"|format(stats.success_rate * 100) }}%
Success Rate
{{ stats.successful }}/{{ stats.evaluated }} tasks succeeded
{% endif %}

Task Browser

Showing of tasks
ID Status Success Parents Description
{% if plots %}
{% if plots.success_timeline %}

Success Over Time

Success timeline
{% endif %} {% if plots.status_pie %}

Task Status

Status distribution
{% endif %}
{% if plots.embedding_space %}

Task Embedding Space

Embedding space
{% endif %} {% if plots.lineage_tree %}

Full Lineage Tree

Lineage tree
{% endif %} {% endif %}
{% endblock %}