| {{ transcript.idx }} |
{{ transcript.tags }} |
{{ "%.3f"|format(transcript.strong_reject_score) }}
|
{% if transcript.easy_scratchpad.final_answer == 'FAILED TO PARSE' %}
N/A
{% else %}
{{ "Yes" if transcript.easy_scratchpad.final_answer else "No" }}
{% endif %}
|
{% if transcript.hard_scratchpad.final_answer == 'FAILED TO PARSE' %}
N/A
{% else %}
{{ "Yes" if transcript.hard_scratchpad.final_answer else "No" }}
{% endif %}
|
{{ "True" if transcript.is_compromised else "False" }}
|
{{ transcript.categorization.judgement if transcript.categorization.judgement else "N/A" }} |
{% endfor %}