In tensorflow, how to make a two-stream neural network share the same weights in several layers?
In tensorflow, I have a two-stream neural network and I want to share the same weights in first two layers. For example, x1_conv_w1 = tf.get_variable("x1_conv_w1", [5,5,4,32], dtype=tf.float32,...
10 November 2018
1,631
4
View