chore(example/jit): improved format

This commit is contained in:
sugarme 2020-07-01 12:59:11 +10:00
parent 98624fad6e
commit 8dee081115

View File

@ -50,6 +50,6 @@ func main() {
top5 = imageNet.Top(output, int64(5))
for _, i := range top5 {
fmt.Printf("%v \t\t\t: %.2f%%\n", i.Label, i.Pvalue*100)
fmt.Printf("%-80v %5.2f%%\n", i.Label, i.Pvalue*100)
}
}