We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
sess.run(iterator_inits[1]) # switch to validation dataset while True: import pdb; pdb.set_trace(); try: _, summaries_ = sess.run([loss, summaries], feed_dict={training: False}) # print(summaries_) val_writer.add_summary(summaries_, global_step_) except tf.errors.OutOfRangeError: break
Above code for validation steps never finishes. I trained on 192 images and validation steps never finishes even after 10 hours.
Is the because of that infinite loop and never reaching to break statement?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Above code for validation steps never finishes. I trained on 192 images and validation steps never finishes even after 10 hours.
Is the because of that infinite loop and never reaching to break statement?
The text was updated successfully, but these errors were encountered: