Skip to content

Commit

Permalink
stopped printing results
Browse files Browse the repository at this point in the history
  • Loading branch information
matryer committed Jul 12, 2018
1 parent 7956b9a commit 3185652
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions textclass/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,15 @@ func validate(ctx context.Context, cb *classificationbox.Client, modelID string,
predictedClass, err := predictitem(ctx, cb, modelID, item)
if err != nil {
errors++
fmt.Print("!")
//fmt.Print("!")
continue
}
if predictedClass == item.class {
correct++
fmt.Print("✓")
//fmt.Print("✓")
} else {
incorrect++
fmt.Print("𐄂")
//fmt.Print("𐄂")
}
bar.Increment()
}
Expand Down

0 comments on commit 3185652

Please sign in to comment.