146a5c08f7
This resulted from a lengthy collaboration with @kevinzakka, @jonathanembleyriches, @nimrod-gileadi, @gizemozd, @quagla, and @yuval.
20 lines
421 B
HTML
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 %} |