wbhu / DnCNN-tensorflow

:octocat::octocat:A tensorflow implement of the paper "Beyond a Gaussian Denoiser: Residual Learning of Deep CNN for Image Denoising"
GNU General Public License v3.0
363 stars 150 forks source link

log files #30

Closed evagian closed 6 years ago

evagian commented 6 years ago

First of all great job!

I have a question about the print outputs (ex Epoch: [10] [2327/5198] time: xxx, loss: xxx)...

Are they being saved somewhere (in the log files for example)? And if yes, how can I access them?

I want to use them for plotting the train vs dev PSNR for every epoch.

Thank you!

wbhu commented 6 years ago

Hi @evagian ,

The loss is plotted by tensorboard, you can view it in your browser. And you can also add anything you want to plot to the tensorboard summary as the loss plotting do. The log file can be downloaded from tensoirboard in json format.

Thanks, Wenbo

evagian commented 6 years ago

Thank you very much ! :)