3ec09f7296
PiperOrigin-RevId: 868229512 Change-Id: I790bc08fc8b0745583a2f92d9ee2c5a19ba558ea
21 lines
422 B
HTML
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 %}
|