{% extends "layout.html" %}
{% block title %}{{ model.name }}{% endblock %}
{% block body %}
{{ model.name }} for {{ model.run.label }}
{% if problem_type == 'classification' %}
{% include 'models/model_button_optimize.html' %}
{% include 'models/model_metrics_table.html' %}
{% include 'models/model_remove_include_features.html' %}
{% include 'models/model_contingency_table.html' %}
{% include 'models/model_roc_curve.html' %}
{% include 'models/model_features_curves.html' %}
{% include 'models/model_features_importances.html' %}
{% include 'models/model_data.html' %}
{% else %}
{% include 'models/model_button_optimize.html' %}
{% include 'models/model_metrics_table.html' %}
{% include 'models/model_remove_include_features.html' %}
{% include 'models/model_features_curves.html' %}
{% include 'models/model_features_importances.html' %}
{% include 'models/model_data.html' %}
{% endif %}
{% endblock %}