{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block content %}
FINAL RESULTS
{% if top_catch_rate == 100 %}🎯{% else %}📊{% endif %}
{{ top_catch_rate }}% top-catch rate
Here's how your hiring decisions compared to the ground truth across all {{ num_task_rounds }} rounds.
Bonus basis: your payment depends on your top-catching rate across the {{ num_task_rounds }} main rounds.
Correct hires {{ total_correct }} / {{ num_task_rounds }}
Top-catch rate {{ top_catch_rate }}%
Bonus earned {{ bonus_earned }}
Avg. quality loss {{ avg_loss }}
ROUND-BY-ROUND BREAKDOWN
Round K Hired Quality Best available Best quality Loss Result
{% for r in rounds %}
{{ r.round_number }} {{ r.top_k }} {{ r.hired_label }} {{ r.quality_of_hire }} {{ r.best_label }} {{ r.best_available_quality }} {{ r.quality_loss }} {% if r.is_correct_hire %}✓{% else %}✗{% endif %}
{% endfor %}
{% endblock %}