SRGAN
SRGAN copied to clipboard
question about model
Hi, I try to introduce scale parameter in resblock. for example ResBlock(x) { tmp = x x = conv1(x) x = conv2(x) x = x*0.1 # if i add this line, it will report error :AttributeError: 'tensorflow.python.framework.ops.EagerTensor' object has no attribute '_info' Elementwise(tf.add)([tmp,x]) }
anyone can tell me how to resolve this problem.