elliottwu / DeepHDR

This is the implementation for Deep High Dynamic Range Imaging with Large Foreground Motions (ECCV'18)
MIT License
186 stars 38 forks source link

Fix an typo error in ops.py #16

Closed Galaxies99 closed 3 years ago

Galaxies99 commented 3 years ago

There is (maybe) a typo error in ops.py, in function conv2d_transpose(...):

w = tf.get_variable('w', [k_h, k_h, output_shape[-1], input_.get_shape()[-1]], ...)

It seems that the second k_h should be k_w, although it has no effect on the codes (since both k_h and k_w are set to 5).