Job Status: {{ job_id }}

Updated at {{ job.updated_at }}
{% if can_stop %} {% endif %}
{{ job.status|upper }}
Current Device
{{ job.device_name if job.device_name else 'Detecting device...' }}
{{ job.device_label if job.device_label else 'Detecting...' }}{% if job.device_backend %} ({{ job.device_backend }}){% endif %}
Message: {{ job.message }}
{{ job.phase|replace('_', ' ')|title if job.phase else 'Queued' }} {{ job.progress if job.progress is not none else 0 }}%
{% if summary.label_mapping_source %}
Label Mapping: {{ summary.label_mapping_source }}
{% endif %} {% if job.get('current_epoch') is not none and job.get('total_epochs') is not none and job.get('total_epochs') > 0 %}
Epoch {{ job.get('current_epoch', 0) }}/{{ job.get('total_epochs', 0) }} {{ job.status|upper }}
{% endif %}

Training Visuals

{% for item in visual_artifacts %}
{{ item.key|replace('_', ' ')|title }} - download
{{ item.key }}
{% endfor %}

Classification Report

{% if report_text %}
{{ report_text }}
{% else %}
The report has not been generated yet, or training is still in progress.
{% endif %}

Text and File Downloads

{% for item in download_artifacts %}
{{ item.key|replace('_', ' ')|title }}: {{ item.filename }}
{% endfor %}
{% if job.traceback %}

Traceback

{{ job.traceback }}
{% endif %}