Overview

Accuracy {{ accuracy | round(1) }}%
Precision {{ precision | round(1) }}%
Recall {{ recall | round(1) }}%
F1 {{ f1 | round(1) }}%
Correct {{ correct_count }}
Incorrect {{ incorrect_count }}

Confusion Matrix

{{ confusion_matrix|safe }}

Base Prompt

{{ prompt }}

Review

Review Prompt

{{ review_template.pretty_repr() }}
{% if review_result %}

Review Result

{{ review_result }}
{% endif %}
{% for item in incorrect_items %}

{{ item.app_id }}

{{ item.app.text_before() }} {{ item.app.text_with_signs() }} {{ item.app.text_after() }}

{{ item.active }} ‎➜ {{ item.passive }}

Ground Truth

{{", ".join(item.ground_truth)}}
{{item.ground_truth_description}}

Incorrect Prediction

{{", ".join(item.predicted)}}
{{item.description}}
{% endfor %} {% for item in correct_items %}

{{ item.app_id }}

{{ item.app.text_before() }} {{ item.app.text_with_signs() }} {{ item.app.text_after() }}

{{ item.active }} ‎➜ {{ item.passive }}

Ground Truth

{{", ".join(item.ground_truth)}}
{{item.ground_truth_description}}

Correct Prediction

{{", ".join(item.predicted)}}
{{item.description}}
{% endfor %}