neural-style-tf
neural-style-tf copied to clipboard
save every x iterations
is there a flag for specifying how often to save? something like save every 50 iterations or every 100?
As far as I know I dont think there is.
You can call the write_image_output()
function inside the while loop of minimize_with_adam()
function if you are comfortable with editing the tensorflow code.
File IO is expensive, so be careful not to over do it.