@@ -438,27 +438,37 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
Status
|
||||
</th>
|
||||
<th>
|
||||
EpochProgress
|
||||
Training Round Progress
|
||||
</th>
|
||||
<th>
|
||||
Accuracy
|
||||
</th>
|
||||
<th>
|
||||
Status
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ range .Defs}}
|
||||
<tr>
|
||||
<td>
|
||||
{{.Status}}
|
||||
{{.EpochProgress}}/20
|
||||
</td>
|
||||
<td>
|
||||
{{.EpochProgress}}
|
||||
{{.Accuracy}}%
|
||||
</td>
|
||||
<td>
|
||||
{{.Accuracy}}
|
||||
<td style="text-align: center;">
|
||||
{{ if (eq .Status 2) }}
|
||||
<span class="bi bi-book" style="color: green;"></span>
|
||||
{{ else if (eq .Status 3) }}
|
||||
<span class="bi bi-book-half" style="color: green;"></span>
|
||||
{{ else if (eq .Status 6) }}
|
||||
<span class="bi bi-book-half" style="color: orange;"></span>
|
||||
{{ else if (eq .Status -3) }}
|
||||
<span class="bi bi-book-half" style="color: red;"></span>
|
||||
{{ else }}
|
||||
{{.Status}}
|
||||
{{ end }}
|
||||
</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user