Files
Mujoco_WASM/python/mujoco/sysid/report/templates/optimization_trace.html
T
Kevin Zakka 146a5c08f7 System identification toolbox for MuJoCo.
This resulted from a lengthy collaboration with @kevinzakka, @jonathanembleyriches, @nimrod-gileadi, @gizemozd, @quagla, and @yuval.
2026-02-09 12:12:24 -05:00

20 lines
421 B
HTML

{% if objective_plot_html %}
<h3>Objective Function</h3>
<div>
{{ objective_plot_html | safe }}
</div>
{% endif %}
{% if candidate_heatmap_html %}
<h3>Parameter Candidate Heatmap</h3>
<div>
{{ candidate_heatmap_html | safe }}
</div>
{% endif %}
{% if candidate_plots_html %}
<h3>Parameter Candidates</h3>
{% for plot_html in candidate_plots_html %}
<div>
{{ plot_html | safe }}
</div>
{% endfor %}
{% endif %}