{% if report_data.insights %}
{% for insight in report_data.insights %}
{{ insight.message }}
{% endfor %}
{% else %}
The distillation process successfully compressed the model by {{ report_data.compression_rate|default("N/A") }}x
while maintaining {{ report_data.accuracy_retention|default("N/A") }}% of the original accuracy.
The student model achieves {{ report_data.speedup_factor|default("N/A") }}x faster inference time
with {{ report_data.memory_saved|default("N/A") }} MB memory reduction.
{% if report_data.warnings %}
{% for warning in report_data.warnings %}
{{ warning }}
{% endfor %}
{% endif %}
{% endif %}