liteflownet-tf2 icon indicating copy to clipboard operation
liteflownet-tf2 copied to clipboard

why do we need `module_feat()` in `matching()`?

Open zhuokaizhao opened this issue 4 years ago • 0 comments

I am wondering why would we need module_feat() within matching()? More specifically I did not find any reference from the original paper that says we need to apply a convolutional layer specifically for the level-2 features. Did I miss something here? Thanks!

def module_feat():
  if int_level == 2:
    return tf.keras.layers.Conv2D(filters=64, kernel_size=1, activation=lrelu, padding='valid')
  else:
    return tf.keras.Sequential()

zhuokaizhao avatar Jun 27 '20 20:06 zhuokaizhao