Commit 00c68eb2 authored by Alan Yee's avatar Alan Yee Committed by GitHub
Browse files

Fix print styling

parent 5691cc08
......@@ -50,6 +50,7 @@ for epoch in range(training_epochs):
# Display logs per epoch step
if epoch % display_step == 0:
print("Epoch: ", '%d,' % (epoch + 1),
"Cost: ", "{:.9f}".format(avg_cost))
print("Epoch:", '%d,' % (epoch + 1),
"Cost:", "{:.9f}".format(avg_cost))
print("Total cost: " + str(autoencoder.calc_total_cost(X_test)))
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment