Relation Extraction Examples ({{ examples|length }})

check_circle_outline   F1 = 100.000
check_circle_outline   F1 >= 50.00
highlight_off   F1 < 50.00
  True Positive  
  False Positive  
  False Negative

{% for example in examples %} {% set outer_loop = loop %}
{% for tp in example["tp"] %} {% endfor %} {% for fp in example["fp"] %} {% endfor %} {% for fn in example["fn"] %} {% endfor %}
Score Relation Text (Head - Tail)
{{ "%.4f"|format(tp[2]) }} {{ tp[1] }} {{ tp[0] | safe }}
{{ "%.4f"|format(fp[2]) }} {{ fp[1] }} {{ fp[0] | safe }}
{{ fn[1] }} {{ fn[0] | safe }}
{% endfor %}