{% extends "repository/base.html" %} {% load i18n %} {% load markup %} {% load show_stars %} {% load repository_filters %} {% load paginator %} {% block title %}{% trans "Repository" %} :: {{ object.klass }} :: {{ object.name }}{% endblock %} {% block breadcrumbs %}{% trans "Repository" %} / {% trans "Task" %} / {% trans "View" %} / {{ object.name }} {% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{% trans "View" %} {{ object.name }} ({% if object.is_public %}{% trans "public" %}{% else %}{% trans "private" %}{% endif %})

{{ object.pub_date|date:"Y-m-d H:i" }} {% trans "by" %} {{ object.user.username }} | {% trans "Version" %} {{ object.version }} | {% trans "Rating" %} {% show_stars current.rating_avg of 5 round to half %}
{% include "repository/rating_hide.html" %}
{% trans "ACTIVATE" %} {% trans "EDIT" %} {% trans "FORK" %} {% trans "DELETE" %} {% if dependent_entries_exist %}

Object is LOCKED because others depend on it.
Fork to change.

{% endif %}

{% include "repository/conversion_failed.html" %}
{% trans "Summary" %}
{{ object.summary|edit_if_empty|markdown:"safe" }}
{% trans "License" %}
{{ object.license.name }}
{% trans "Tags" %}
{% for tag in object.get_tags %}{% if tag %}{{ tag }} {% endif %}{% endfor %}
{% trans "Input format" %}
{{ object.input|markdown:"safe" }}
{% trans "Output format" %}
{{ object.output|markdown:"safe" }}
{% trans "Performance Measure" %}
{{ object.performance_measure }}
{% trans "Type" %}
{{ object.type }}
{% trans "Data" %}
{{ object.data.name }}
{% if object.data_heldback and can_view_heldback %}
{% trans "Data (held back)" %}
{{ object.data_heldback.name }}
{% endif %}
{% trans "Download" %}
{% if object.slug %} {% if object.has_h5 %} {% trans "HDF5" %} ({{ object.file.size|filesizeformat }}) {% trans "XML" %} {% trans "Matlab" %} {% trans "Octave" %} {% comment %} {% trans "RData" %} {% endcomment %} {% else %} {{ object.format }} ({{ object.file.size|filesizeformat }}) {% endif %} {% endif %}
{% trans "Completeness of this item currently" %}: {{ object.completeness }}%.
{% if can_edit %}{% trans "You can" %} {% trans "edit this item" %} {% trans "to add more meta information and make use of the site's premium features" %}.{% endif %}
{% trans "Input Variables" %}
{{ extract.input_variables|join:', ' }}
{% trans "Output Variables" %}
{{ extract.output_variables|join:', ' }}
{% trans "Datasplits" %}
{% if extract.split_overflow %}
{% else %} {% for sp in extract.split_idx %} {% endfor %}
NrSplitimage
{{ sp.0 }}
{% endif %} {% for sp in extract.reduce_split_idx %} {% endfor %}
NrTrain IndicesValidation IndicesTest Indices
{{ sp.0 }} {{ sp.1|join:', ' }} {{ sp.2|join:', ' }} {{ sp.3|join:', ' }}

We use python style indices
{% trans "Description" %}
{{ object.description|edit_if_empty|markdown:"safe" }}
{% trans "URLs" %}
{{ object.urls|edit_if_empty }}
{% trans "Publications" %}
    {% for p in object.publications.all %}
  • {{ p.content|edit_if_empty|markdown:"safe" }}
  • {% endfor %}
{% if versions.has_previous %}« {% trans "prev" %}{% endif %}
{% for v in versions.object_list %} revision {{ v.version }}
by {{ v.user }} on {{ v.pub_date|date:"Y-m-d H:i" }}
{% endfor %}
{% if versions.has_next %}{% trans "next" %} »{% endif %}
{% load comments %} {% get_comment_list for repository.task current.id as comment_list %} {% get_comment_form for repository.task current.id as form %} {% include "comments/list.html" %} {% include "comments/form.html" %}

This item was downloaded {{ current.downloads }} times and viewed {{ current.hits }} times.

{% if page.object_list %}

Methods associated to task {{ object.name }}

{% paginator %} {% for o in page.object_list %} {% endfor %}
SubmitterMethod (version)CurveScoreDate
{{ o.method.user }} {{ o.method.name }} ({{ o.task.version }}) {% ifequal o.complex_result_type "Curve" %} {% else %} - {% endifequal %} {{ o.aggregation_score }}  predictions {{ o.pub_date|date:"Y-m-d H:i" }}
{% paginator %} {% else %}

No Methods yet solving task {{ object.name }}

{% endif %} {% trans "Submit a new Method" %} {% if result_form %}
{{ result_form.method.errors }}
{{ result_form.method }}
{{ result_form.challenge.errors }}
{{ result_form.challenge }}
{{ result_form.output_file.errors }}
{{ result_form.output_file }}
{% else %} {% trans "To submit a result, please" %} sign in. {% endif %}
{% endblock %}