Open pukkapies opened 7 years ago
In line 93 of the above file, it looks like the normalisation is performed over the out_channels, instead of in_channels. I think instead it should be: v_norm = tf.nn.l2_normalize(v, [0, 1, 3])
out_channels
in_channels
v_norm = tf.nn.l2_normalize(v, [0, 1, 3])
In line 93 of the above file, it looks like the normalisation is performed over the
out_channels
, instead ofin_channels
. I think instead it should be:v_norm = tf.nn.l2_normalize(v, [0, 1, 3])