level 1
lmolhw123ok
楼主
我在
def layer():
tf.variable_scope(reuse=tf.AUTO_REUSE),
net = slim.conv2d()
连续调用两次这个layer函数,出来的结果是
Tensor("layer/Conv:0")和
Tensor("layer_1/Conv:0")
我的目的是两次使用同一个CNN,但是出来的结果是这样的,这算是重用了这个CNN么?还是使用了两个CNN
2018年01月28日 08点01分
1
def layer():
tf.variable_scope(reuse=tf.AUTO_REUSE),
net = slim.conv2d()
连续调用两次这个layer函数,出来的结果是
Tensor("layer/Conv:0")和
Tensor("layer_1/Conv:0")
我的目的是两次使用同一个CNN,但是出来的结果是这样的,这算是重用了这个CNN么?还是使用了两个CNN