Skip to content

Commit

Permalink
Fix small error in display
Browse files Browse the repository at this point in the history
  • Loading branch information
redelmann committed Mar 27, 2018
1 parent ba0f959 commit ee47423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nugget/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
sys.stdout.write("\033[F")
sys.stdout.write("\033[F")
sys.stdout.write("\033[K")
print("{0:{1}d} / {2}".format(n, len(str(total)), total))
print("{0:{1}d} / {2}".format(n, len(str(val_total)), val_total))
sys.stdout.write("\033[K")
print("MAE for distances: {}".format(absolute_error_distance / n))
sys.stdout.write("\033[K")
Expand Down

0 comments on commit ee47423

Please sign in to comment.