{% extends "base.html" %} {% block title %}History Dashboard | Traffic Sign Classifier{% endblock %} {% block content %}

Historique

Prediction dashboard

Review predictions, mark them true or false, and track feedback quality.

New prediction
Total{{ stats.total }}
Reviewed{{ stats.reviewed }}
True{{ stats.correct }}
False{{ stats.incorrect }}
Feedback accuracy{{ stats.accuracy }}%

Predictions by class

Top {{ charts.class_chart|length }}
{% for item in charts.class_chart %}
{{ item.label }} {{ item.count }}
{% else %}

No class data yet.

{% endfor %}

Feedback summary

{{ stats.reviewed }} reviewed
{% for item in charts.feedback_chart %}
{{ item.label }} {{ item.count }}
{% endfor %}
{% for row in history %} {% else %} {% endfor %}
Image Prediction Confidence Feedback Action
Traffic sign {{ row.predicted_class }} {{ format_confidence(row.confidence) }} {% if row.is_correct == 1 %} True {% elif row.is_correct == 0 %} False {% else %} Pending {% endif %}
No prediction history yet.
{% endblock %}