{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block extra_styles %}{% endblock %} {% block content %}
Autoresearch Experiments
Autonomous ML experiment loops — modify code, train, evaluate, iterate
{% if enabled %} {% else %}
Set AUTORESEARCH_ENABLED=true to enable
{% endif %}
Metric: {{ metric_name }} Budget: {{ time_budget }}s Max iters: {{ max_iterations }}
{% if history %} {% for run in history %} {% endfor %}
# {{ metric_name }} Duration Status
{{ loop.index }} {% if run.metric is not none %} {{ "%.4f"|format(run.metric) }} {% else %} — {% endif %} {{ run.get("duration_s", "—") }}s {% if run.get("success") %}OK{% else %}{{ run.get("error", "failed") }}{% endif %}
{% else %}
No experiments yet. Start one to begin autonomous training.
{% endif %}
{% endblock %}