{% extends "base.html" %} {% block title %}{% if lang == 'zh' %}Demo{% else %}Demo{% endif %} — Video Rating System{% endblock %} {% block content %}
{{ annotator_name }} Progress: {{ user_completed_groups }} / {{ user_quota }}
{% include "_progress_bar.html" %}

Instructions

You will be shown pairs of videos along with their text prompts and reference images. Your task is to evaluate whether each video obeys real-world physical laws independently.

Please provide thoughtful and consistent ratings. Your evaluations are very important to us.

Check the scoring demo examples below to see how we score videos before you begin.

{% include "_scale_table.html" %}

{% if lang == 'zh' %}评分示范{% else %}Scoring Demo{% endif %}

{% if lang == 'zh' %} 以下是人工打分的实际案例。高亮的按钮是给出的分数,下方是评分理由,供你参考如何打分。 {% else %} Below are human scoring examples. The highlighted button is the score given, with reasoning shown below. Use these as a reference for how to rate. {% endif %}

{% for demo in demos %}

{% if lang == 'zh' %}示例{% else %}Example{% endif %} {{ loop.index }}

Prompt

{{ demo.prompt }}

{% if lang == 'zh' %}点击 play 可以播放视频,再次点击可以重放{% else %}Click play to start the video; click again to replay{% endif %}

{% set rg = demo.rationale_general_zh if lang == 'zh' and demo.rationale_general_zh else demo.rationale_general %}

{% if lang == 'zh' %}通用维度{% else %}General Dimensions{% endif %}

{% for key, dim_label, values, description, score_labels in general_dims %}
{{ description }}
{% for v in values %} {% endfor %}
{% if rg and rg.get(key) %}
{{ rg[key] }}
{% endif %}
{% endfor %}
{% if demo.physical_dims %} {% set rp = demo.rationale_physical_zh if lang == 'zh' and demo.rationale_physical_zh else demo.rationale_physical %}

{% if lang == 'zh' %}物理子问题{% else %}Physical Sub-questions{% endif %}

{% set phy_dims = demo.physical_dims_zh if lang == 'zh' and demo.physical_dims_zh else demo.physical_dims %} {% for law_key, law_desc in phy_dims %} {% set hc = human_criteria_by_key.get(law_key) %}
{% if hc %} {{ law_key | capitalize }} {{ hc.question }} {% if hc.note %}{{ hc.note }}{% endif %} {% else %} {{ law_key | capitalize }} {{ law_desc }} {% endif %}
{% for v in [1, 2, 3, 4, 5] %} {% endfor %}
{% if rp and rp.get(law_key) %}
{{ rp[law_key] }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}