RetinexNet
RetinexNet copied to clipboard
Use of reduce_max in input
In the beginning of DeconNet function, there are these two ines:
input_max = tf.reduce_max(input_im, axis=3, keepdims=True) input_im = concat([input_max, input_im])
Could you tell what it does and what is the use of the same?