{% extends "base.html" %} {% block title %}Compare — {{ video_entries | length }} Models{% endblock %} {% block content %}
{{ annotator_name }} Demo Progress: {{ user_completed_groups }} / {{ user_quota }}
{% set progress_compact = true %} {% include "_progress_bar.html" %}
Instructions: Watch all three videos below. Rate each video independently. Your rating should range from 1-5, with 1 meaning completely implausible and 5 meaning fully plausible. Judge only physical plausibility — do not let brightness, colour saturation, or visual appeal influence your ratings.
Scoring: 1 = Completely implausible 2 = Largely implausible 3 = Partially plausible 4 = Mostly plausible 5 = Fully plausible
Generation Prompt (shared by all videos)

{{ prompt }}

{% for label, assignment in video_entries %} {% set vid_status = status_map.get(assignment.id, STATUS_ASSIGNED) %} {% set is_done = vid_status in (STATUS_COMPLETED, STATUS_SKIPPED) %}
Video {{ label }} {% if vid_status == STATUS_COMPLETED %} Submitted {% elif vid_status == STATUS_SKIPPED %} Skipped {% endif %}

General Dimensions

{% set es = existing_scores_map.get(assignment.id) %} {% for key, dim_label, values, description, score_labels in general_dims %}
{{ description }}
{% for v in values %} {% endfor %}
{% endfor %}
{% if physical_dims %}

Physical Sub-questions

{% for key, desc in physical_dims %} {% set hc = human_criteria_by_key.get(key) %}
{% if hc %} {{ key | capitalize }} {{ hc.question }} {% if hc.note %}{{ hc.note }}{% endif %} {% else %} {{ key | capitalize }} {{ desc }} {% endif %}
{% for v in [1, 2, 3, 4, 5] %} {% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% set has_pending = namespace(val=false) %} {% for label, assignment in video_entries %} {% if status_map.get(assignment.id, STATUS_ASSIGNED) not in (STATUS_COMPLETED, STATUS_SKIPPED) %} {% set has_pending.val = true %} {% endif %} {% endfor %} {% if has_pending.val %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}