SRGAN-tensorflow
SRGAN-tensorflow copied to clipboard
KeyError: 'vgg19_1/vgg_19/conv5/conv5_4'
Traceback (most recent call last):
File "main.py", line 231, in
Can you tell me the other SRGAN_pre-trained , such as model _100000 @brade31919
@youthM same issue in the third training step, have you resolved it?
On line of 314 of model.py you have to change
target_layer = scope + 'vgg_19/conv5/conv5_4'
to
target_layer = 'vgg_19/conv5/conv5_4'
Or 316 similarly.
@youthM same issue in the third training step, have you resolved it?
I haven't resolved it.
On line of 314 of model.py you have to change
target_layer = scope + 'vgg_19/conv5/conv5_4'
totarget_layer = 'vgg_19/conv5/conv5_4'
I tried but failed
I tried but failed!!