{% extends "base.html" %} {% block content %}
Run ID: {{ data.summary.run_id }}
Timestamp: {{ data.summary.timestamp }}
{{ data.fields|length }}
{{ data.inputs|length }}
| Index | Prediction | Ground Truth | Status |
|---|---|---|---|
| {{ i + 1 }} | {{ field.predictions[i] }} | {{ field.annotations[i] if field.annotations else '-' }} | {% if field.annotations %} {% if field.predictions[i] == field.annotations[i] %} ✓ {% else %} ✗ {% endif %} {% endif %} |
| Predicted | Actual | Count |
|---|---|---|
| {{ error.predicted }} | {{ error.actual }} | {{ error.count }} |
No annotation data available for error analysis.
{% endif %}| Index | {% for key in data.inputs[0].keys() %}{{ key }} | {% endfor %}
|---|---|
| {{ i + 1 }} | {% for value in input.values() %}{{ value }} | {% endfor %}
{{ data.inputs | tojson(indent=2) }}