{% extends "layout.html" %} {% from 'macros.html' import add_data, error_message, warning_message %} {% block title %}

Train

{% endblock %} {% block content %} {{ add_data('train', data_upload_warnings, data_upload_errors) }}

Train

Data

Dataset type

Epochs
Ensemble Size
Checkpoint name
{% if cuda %}
GPU


{% endif %}


{% if warnings %} {% for warning in warnings %} {{ warning_message(warning) }} {% endfor %} {% endif %} {% if errors %} {% for error in errors %} {{ error_message(error) }} {% endfor %} {% endif %} {% if trained %}

Training complete!

Test performance

Overall: {{ mean_score }} {{ metric }}

By task
{% for i in range(num_tasks) %}

{{ task_names[i] }}: {{ task_scores[i] }} {{ metric }}

{% endfor %} {% endif %} {% endblock %}