{% extends "base.html" %} {% block title %}Training Run Visualization: {{ run }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Training Run: {{ run }}

Command:

{% for group, results in data.items() %}

{{ group }}

{% for metric, value in results.items() %} {% if value is mapping %} {% else %} {% endif %} {% endfor %}
Metric Value
{{ metric }} {% for submetric, subvalue in value.items() %} {% endfor %}
Sub-Metric Value
{{ submetric }} {{ subvalue }}
{{ value }}
{% endfor %}
{% if generated_data %} {% for split, data in generated_data.items() %} {% if data %}

Generated Text ({{ split }})

Input:

Generated:

Label:

/ {{ data|length }}
{% endif %} {% endfor %} {% else %}

No generated text data found.

{% endif %}
{% endblock %}