Skip to content
Snippets Groups Projects
Commit 1b780102 authored by Daniel Gordon's avatar Daniel Gordon
Browse files

tiny training constant changes

parent b723af60
No related branches found
No related tags found
No related merge requests found
......@@ -176,7 +176,7 @@ def main(_):
queue = tf_queue.TFQueue(sess,
placeholders=[imagePlaceholder, labelPlaceholder],
max_queue_size=REPLAY_BUFFER_SIZE,
max_queue_uses=0,
max_queue_uses=1,
use_random_order=False,
batch_size=batchSize)
......@@ -406,7 +406,7 @@ def main(_):
plots = [bigImage0, bigImage1, image0, image1, label]
subplot = drawing.subplot(plots, 3, 2, outputWidth=OUTPUT_WIDTH, outputHeight=OUTPUT_HEIGHT, border=5)
cv2.imshow('debug', subplot[:,:,::-1])
cv2.waitKey(100)
cv2.waitKey(0)
if mirroredInds:
tImage = np.fliplr(
......@@ -571,7 +571,7 @@ def main(_):
plots = [image0, image1, None, outputImage]
subplot = drawing.subplot(plots, 2, 2, outputWidth=OUTPUT_WIDTH, outputHeight=OUTPUT_HEIGHT, border=5)
cv2.imshow('debug', subplot[:,:,::-1])
cv2.waitKey(100)
cv2.waitKey(0)
queue.lock.release()
except KeyboardInterrupt:
if not debug:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment