{{ c.name_a }}
⇄
{{ c.name_b }}
{% if c.content_a or c.content_b %}
{% if c.content_a %}
A: {{ c.content_a }}
{% endif %}
{% if c.content_b %}
B: {{ c.content_b }}
{% endif %}
{% endif %}
{{ c.created_at }}
{% if c.similarity is not none %}
sim {{ (c.similarity * 100) | round | int }}%
{% endif %}
{% if c.nli_score is not none %}
NLI {{ (c.nli_score * 100) | round | int }}%
{% endif %}