Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timodonnell committed Nov 28, 2017
1 parent f179489 commit 7d323a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def run(argv=sys.argv[1:]):

# When running in serial we try to estimate time remaining.
data_trained_on += len(item['data'])
progress = data_trained_on / total_data_to_train_on
progress = float(data_trained_on) / total_data_to_train_on
time_elapsed = time.time() - start
total_time = time_elapsed / progress
print(
Expand Down

0 comments on commit 7d323a8

Please sign in to comment.