{% extends "retrieval/base.html" %} {% block bodyclass %}dashboard{% endblock %} {% comment %} ########################################################################### # # # Copyright (c) 2011 - Idiap Research Institute # # http://www.idiap.ch/ # # # # See file COPYING for the license associated to this software # # # ########################################################################### {% endcomment %} {% block sidebar_help %}

TRAINING HELP


  • This example illustrates the searching/testing process. A user was asked to perform a search for the query that is written on top of the page.
  • You can go to each iteration to see the images displayed by the system and the image that was indicated by the user.
  • You can analyze how the user progressed, even when deciding which image to indicate was difficult, until he was satisfied with some of the images and ended the search.
{% endblock %} {% block sidebar_search %} {% if qs %} {% if user.is_authenticated and user.is_staff %}

SEARCH INFO


Performed iterations: {{ qs.iteration }} {% if user.is_authenticated and user.is_staff %}
Trace: {{ qs.tracedata }}
Thargs: {{ qs.thargs }}
Weights: {{ qs.weights }}
Consistency: {{ qs.consistency }} {% endif %}
Timing sys: {{ qs.timing_sys }}
Timing usr: {{ qs.timing_usr }}

{% endif %} {% endif %} {% endblock %} {% block sidebar_assist %} {% if qa %} {% if user.is_authenticated and user.is_staff %}

ASSISTANT INFO

Target Info

{% for answer in qa.answers3 %} {% for item in answer.images %} {% endfor %} {% endfor %}
{% endif %} {% endif %} {% endblock %} {% block sidebar_config %} {% if user.is_authenticated and user.is_staff %}

CONFIG INFO


Trace: {{ qc.TRACE }}
Thargs: {{ qc.SYS_THARGS }}
Weighs: {{ qc.SYS_WEIGHTS }}
Consistency: {{ qc.SYS_CONSISTENCY }}
Version sys: {{ qc.SYS_VERSION }}

{% endif %} {% endblock %} {% block sidebar_play %} {% if user.is_authenticated and user.is_staff %} {% if qu %}

USER INFO


Username: {{ qu.username }}

{% endif %}

{% trans 'IRREVERSIBLE OPERATIONS'%}

Delete this session
{% endif %} {% endblock %}