{% extends "_base.html" %} {% from "_macros.html" import modal, action_label %} {% block title %}{{ (experiment.name or experiment.experiment_id) | humanize }} · Urika{% endblock %} {% block heading %}{{ (experiment.name or experiment.experiment_id) | humanize }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
| Run | Method | Metrics | Observation |
|---|---|---|---|
| {{ run.run_id }} | {{ run.method }} | {% set metric_items = (run.metrics or {}).items() | list %} {% if metric_items %} {% for key, value in metric_items %} {{ key }}={% if value is number %}{{ '%.3f' | format(value) }}{% else %}{{ value }}{% endif %}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} — {% endif %} | {{ (run.observation or '')[:80] }}{% if run.observation and run.observation|length > 80 %}…{% endif %} |
No runs yet.
Moving the experiment to trash removes it from the experiments
list and moves its folder to
{{ project.path }}/trash/{{ experiment.experiment_id }}-<timestamp>/.
Files are preserved; empty the trash folder manually when you're sure.
Stop the running process first — lock file present at
{{ active_lock_path }}.