| Model | Total | 3x | 2x | 1x | 0x | Coverage |
|---|---|---|---|---|---|---|
| {{ m.model }} | {{ mtotal }} | {{ m.v3 }} | {{ m.v2 }} | {{ m.v1 }} | {{ m.v0 }} | {% if mtotal > 0 %} {{ m.v3 + m.v2 + m.v1 }}/{{ mtotal }} {% endif %} |
| Cohort | Registered | Completed | Partial | Pending | Skipped | Progress |
|---|---|---|---|---|---|---|
| {{ c.cohort }} | {{ c.registered }}{% if c.expected %}/{{ c.expected }}{% endif %} | {{ c.completed }} | {{ c.partial }} | {{ c.assigned }} | {{ c.skipped }} | {% set total = c.completed + c.partial + c.assigned + c.skipped %} {% if total > 0 %} {{ c.completed + c.partial }}/{{ total }} {% else %} no tasks {% endif %} |
| Total | {{ cohort_summary|sum(attribute='registered') }}/{{ cohort_summary|sum(attribute='expected') }} | {{ cohort_summary|sum(attribute='completed') }} | {{ cohort_summary|sum(attribute='partial') }} | {{ cohort_summary|sum(attribute='assigned') }} | {{ cohort_summary|sum(attribute='skipped') }} |
| Name | Cohort | Completed | Partial | Assigned | Skipped | Progress |
|---|---|---|---|---|---|---|
| {{ a.name }} | {{ a.cohort or '-' }} | {{ a.completed }} | {{ a.partial }} | {{ a.assigned }} | {{ a.skipped }} | {% set total = a.completed + a.partial + a.assigned + a.skipped %} {% if total > 0 %} {{ a.completed + a.partial }}/{{ total }} {% else %} no tasks {% endif %} |
| Annotator | Video | Status | Time |
|---|---|---|---|
| {{ r.name }} | {{ r.filename|truncate(40) }} | {{ r.status }} | {{ r.completed_at or r.assigned_at }} |