{% extends "base.html" %} {% block nav_minimization %}selected{% endblock %} {% block body %}

Minimization

{% if model_type is eq('PerBinModel') %} {% if weighted_chi2 is defined %}

Final (weighted) chi2/dof: {{weighted_chi2}} (dof={{weighted_dof}})
Final chi2/dof: {{unweighted_chi2}} (dof={{dof}})

{% else %}

Final chi2/dof: {{unweighted_chi2}} (dof={{dof}})

{% endif %}

Profiles

{% for param in results %} profile {% endfor %}
{% if minimizer_type is eq('CMAES') %}

CMAES logger

cmaes logger
{% endif %} {% else %}

The current model ({{model_type}}) doesn't need a minimization.

{% endif %}
{% endblock %}