Model Performance Report

Accuracy Summary

{% for model in models %} {% endfor %}
Model Accuracy
{{ model.name }} {{ model.accuracy }}

Detection Results Comparison

{% for model in models %} {% endfor %} {% for image in images %} {% for model in models %} {% set prediction = image.predictions[model.name] %} {% endfor %} {% endfor %}
Original Image{{ model.name }}
Original Image: {{ image.name }}
GT: {{ image.ground_truth | join(', ') if image.ground_truth else 'None' }}
{{ prediction.labels | join(', ') if prediction and prediction.labels else 'No objects detected' }} {% if prediction and prediction.output_image_path %} Detection preview by {{ model.name }} {% endif %}