{% extends "base.html" %} {% block main_content %}

Basic AI stats

What
Amount
Files with a face
{{fstats['files_with_a_face']}}
Files with a matched face
{{fstats['files_with_a_match']}}
Files with missing matches
{{fstats['files_with_missing_matches']}}
All faces found
{{fstats['all_faces']}}
All faces matched
{{fstats['all_matched_faces']}}
All faces unmatched
{{fstats['all_unmatched_faces']}}
{% if num_stats > 0 %}
Person
# matches
{% endif %} {% if num_stats > 1 %}
Person
# matches
{% endif %} {% if num_stats > 2 %}
Person
# matches
{% endif %} {% if num_stats > 3 %}
Person
# matches
{% endif %}
{% for s in stats %}
{{s[1]}}
{% if loop.index + 1 % 3 == 0 %}
{% endif %} {% endfor %}
{% endblock main_content %}