{% extends "repository/base.html" %} {% load i18n %} {% block title %}{% trans "Repository" %} :: {{ klass }} :: {% trans "New" %}{% endblock %} {% block breadcrumbs %}{% trans "Repository" %} / {{ klass }} / {% trans "New" %}{% endblock %} {% block extrahead %} {% include "autocomplete.html" %} {% endblock %} {% block content %}

{% trans "Submit new" %} {{ klass }}

{% trans "Supply only vital information under the Summary tab. You can fill in additional information under More Info or later on by editing." %}
{% if form.errors %}

{% trans "There were some errors, please see below" %}.{% endif %}

* {{ form.name.errors }}
{{ form.name }}
{% trans "Come up with good name. IT CANNOT BE CHANGED LATER ON! The name will also be used for creating the 'slug', that is, the readable id for this item." %}
{{ form.summary.errors }}
{{ form.summary }}
{% trans "One-line summary of your task" %}
{{ form.tags.errors }}
{{ form.tags }}
{% trans "Space separated tags for your task (see tag cloud on the right)." %}
{% ifequal klass "Task" %}
* {{ form.input.errors }}
{{ form.input}}
{% trans 'Describe the format of the input features for this learning task.' %}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
* {{ form.output.errors }}
{{ form.output }}
{% trans 'Describe the format of the output features for this learning task.' %}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
* {{ form.performance_measure.errors }}
{{ form.performance_measure }}
* {{ form.type.errors }}{{ form.freeformtype.errors }}
{{ form.type }} {{ form.freeformtype }}
{% trans "Select type of Task or add a new one by filling in the text field" %}.
* {{ form.data.errors }}
{{ form.data }}
{% trans 'Data set on which the learning task is defined' %}
{{ form.data_heldback.errors }}
{{ form.data_heldback }}
{% trans 'Held back data file (for example for challenges)' %}
{{ form.file.errors }}
{{ form.file }}
Upload additional information in a file (code, description, etc.)
{% endifequal %}
{{ form.description.errors }}
{{ form.description }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.urls.errors }}
{{ form.urls }}
{{ form.publications.errors }}
{{ form.publications }}
{{ form.input_variables.errors }}
{{ form.input_variables }}
{{ form.output_variables.errors }}
{{ form.output_variables }}
Datasplits
Train IndicesValidation IndicesTest Indices

We use python style indices
{{ form.keep_private }} {% trans "Keep private" %}
{% endblock %}