faststyle icon indicating copy to clipboard operation
faststyle copied to clipboard

feature request: render test image while training

Open kthordarson opened this issue 6 years ago • 1 comments

It would be nice to follow the progress while training by rendering a sample image at X intervals while training a new model. For example at each num_steps_ckpt a sample image will be rendered.

kthordarson avatar Apr 18 '18 08:04 kthordarson

You could easily use put this in the code in a few lines by using tf.summary.image (https://www.tensorflow.org/api_docs/python/tf/summary/image) Just look in the code at the other summaries. Keep in mind that saving images will make the tf.event files that get saved much larger.

ghwatson avatar Jan 19 '19 17:01 ghwatson