{% extends "base.html" %} {% block content %}

Training Metrics

{% for card in scorecards %}
{{ card.label }}
{{ card.value }}
{{ card.sub }}
{% else %}

No metrics available for this report.

{% endfor %}
{% if gauges %}

Ranking Quality Overall {{ overall_score_percent | default(0) }}%

{% for gauge in gauges %}
{{ gauge.label }}
{{ gauge.display }}
{% endfor %}
{% endif %}

Training Loss

{% if loss_history and loss_history|length > 0 %}
{% else %}

No loss history for this report.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}