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