{% extends 'base.html' %} {% set page = 'validations' %} {% block content %}
Select Evaluation Results
{{ form.model.label }}{{ form.model() }} {{ form.label.label }}{{ form.label() }}
{% if validations|length == 0 %}
No Evaluation Results

No evaluation results are saved on the Machine Translation server.

{% else %} {% if base64_jpg %}
Evaluation Results Plot
{% endif %}
Evaluation Results Table
{% for val in validations %} {% endfor %}
Creation Time Model Label Correct Total Accuracy
{{ val.created.isoformat(timespec='seconds') }} {{ val.model }} {{ val.label }} {{ val.correct }} {{ val.total }} {{ '{:.3f}'.format(val.accuracy) }}
{% endif %} {% endblock %}