J. Chang
J. Chang

Reputation: 105

Why do value showed in tensorboard is not consistent with actual value?

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

Answers (1)

P. Zhao
P. Zhao

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

Related Questions