I had built a convolutional neural network in tensorflow. It is trained and now I am unpacking it and performing evaluations.
import main
import Process
import I
Update from chat -- the program runs successfully, and the messages that are printed are due to Python killing threads while they are running as the process exits.
The messages are harmless but it's possible to avoid them by stopping threads manually using pattern below.
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(sess=sess, coord=coord)
coord.request_stop()
coord.join(threads)