SRGAN icon indicating copy to clipboard operation
SRGAN copied to clipboard

issues about loss function and scipy version.

Open Yuui-Asuka opened this issue 5 years ago • 1 comments

1 .Is it better to use LSE Loss instead of sigmoid? According to the paper https://arxiv.org/abs/1611.04076, I changed "g_loss" to "tf. reduce_mean (tf.nn.l2_loss (fake_output - tf. ones_like (fake_output)))". 2. "imresize" and "imread" has been removed from scipy.misc since scipy-1.3.0,but the API in the source code was not updated, which caused some problems, are there any plans to update the API of scipy?

Yuui-Asuka avatar Sep 26 '19 10:09 Yuui-Asuka

Using an earlier scipy version fixes this; don't think it needs to be updated pip3 install scipy==1.1.0

sintaxed avatar Oct 18 '19 02:10 sintaxed