{% extends "framework_modern.html" %} {% load static %} {% load envipytags %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_model_modal.html" %} {% include "modals/objects/evaluate_model_modal.html" %} {% include "modals/objects/retrain_model_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}

{{ model.name }}

{{ model.description }}

{% if model|classname == 'MLRelativeReasoning' or model|classname == 'RuleBasedRelativeReasoning' %}
Rule Packages
Reaction Packages
{% if model.eval_packages.all|length > 0 %}
Eval Packages
{% endif %}
Model Status
{{ model.status }}
{% endif %} {% if model.ready_for_prediction %}
Predict
{% endif %} {% if model.ready_for_prediction and model.app_domain %}
Applicability Domain Assessment
{% endif %} {% if model.model_status == 'FINISHED' %}
Precision Recall Curve
{% endif %}
{# prettier-ignore-start #} {# FIXME: This is a hack to get the precision recall curve data into the JavaScript code. #} {# prettier-ignore-end #} {% endblock content %}