{% extends "base.html" %} {% block title %}Runs | Silisocs Studio{% endblock %} {% block crumb %}Runs{% endblock %} {% block content %}

Artifact trajectories

Runs

Open any recorded world and move from overview to event-level analysis.

{{ runs|length }} indexed
{% if runs %}
{% for record in runs %}
{{ '%02d'|format(loop.index) }}{{ (record.artifact.scenario or 'R')[:2]|upper }}{{ record.artifact.scenario or record.path.name }}{{ record.id }}{{ record.artifact.num_agents or '—' }}agents{{ record.artifact.num_steps or '—' }}episodes{{ record.artifact.status or 'unknown' }}
{% endfor %}
{% else %}
No matching trajectories

Adjust the filters, or launch a scenario and Studio will index every artifact it produces.

Choose a scenario
{% endif %} {% endblock %}