{{ .Model.Name }}
Preparing the model
{{ .Model.Name }}
Failed to prepare model
{{/* TODO improve this */}}
Processing zip file...
{{/* FAILED TO Prepare for training */}}
{{ else if or (eq .Model.Status -3) (eq .Model.Status -4)}}
{{ template "base-model-card" . }}
{{ template "delete-model-card" . }}
{{ else if (eq .Model.Status 4)}}
{{ template "base-model-card" . }}
{{/* TODO improve this */}}
Training the model...
{{/* TODO Add progress status on definitions */}}
{{/* TODO Add ability to stop training */}}
{{/* Model Ready */}}
{{ else if (eq .Model.Status 5)}}
{{ template "base-model-card" . }}
{{ template "run-model-card" . }}
{{ template "delete-model-card" . }}
{{ else }}
{{/* TODO Add progress status on definitions */}}
Training Round Progress | Accuracy | Status |
---|---|---|
{{.EpochProgress}}/20 | {{.Accuracy}}% | {{ if (eq .Status 2) }} {{ else if (eq .Status 3) }} {{ else if (eq .Status 6) }} {{ else if (eq .Status -3) }} {{ else }} {{.Status}} {{ end }} |