Reputation: 105
I visualize mean square error for test set along with the training in tensorboard, but the curve showed in tensorboard is not consistent with the value I logged.
The logged values are here, it converged to 80~100.
The curve in tensorboard is here, it converged to less 50:
So why? I am sure my code is right, the same problem was appear on my friend.
Upvotes: 0
Views: 97
Reputation: 26
Please make sure you run the operations at a same time.
sess.run([train_op, summary_op])
not like
sess.run(train_op) sess.run(summary_op)
Upvotes: 1