Spaces:
Running
Running
File size: 357 Bytes
1118181 | 1 2 3 4 5 6 7 8 9 10 11 | {% if vote_count > 0 %}
<span>{{ vote_count }} vote{{ "s" if vote_count != 1 else "" }}</span>
·
<span>{{ agreement_pct }}% agree</span>
{% if hard_disagree_rate > 25 %}
· <span class="warning">judge may be miscalibrated</span>
{% elif vote_count >= 15 %}
· <span class="calibrated">judge well-calibrated</span>
{% endif %}
{% endif %}
|