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

Classifier

Upload a traffic sign image

Open dashboard

The prediction is saved automatically to your personal history.

{% if model_error %}
{{ model_error }}
{% endif %}
or

Historique

Recent history

{% for row in history %}
Traffic sign prediction {{ row.predicted_class }} {{ format_confidence(row.confidence) }} confidence
{% else %}

No predictions yet.

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}