Files
Mujoco_WASM/python/mujoco/sysid/report/templates/optimization_trace.html
T
Copybara-Service 3ec09f7296 Merge pull request #3079 from aftersomemath:sysid-pr
PiperOrigin-RevId: 868229512
Change-Id: I790bc08fc8b0745583a2f92d9ee2c5a19ba558ea
2026-02-10 11:04:12 -08:00

21 lines
422 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 %}