jiangsutx / SRN-Deblur

Repository for Scale-recurrent Network for Deep Image Deblurring
http://www.xtao.website/projects/srndeblur/srndeblur_cvpr18.pdf
MIT License
714 stars 184 forks source link

Some questions on BasicConvLSTMCell #27

Closed Deephome closed 5 years ago

Deephome commented 5 years ago

Hi, I have some questions:

  1. there are no definition for "self._num_units" in class BasicConvLSTMCell ?
  2. what's the role of "forget_bias=1.0" ? some conv_lstm implementation don't use this forget bias.

Looking forward to your reply!

jiangsutx commented 5 years ago

Actually I used an open-source implementation for ConvLSTM. I think we did not use that function containing _num_units, so it will not cause error in practice.

You can switch to official implementation from TensorFlow instead. tf.contrib.rnn.ConvLSTMCell

Deephome commented 5 years ago

@jiangsutx Thank you for your reply!