In the line 240, the string 'conv_3' miss the %d (#12578)
I think the author missed the '%d' to name the related net scope, so the correct code is : net = slim.conv2d(net, 256, [3, 3], scope='conv3_%d' % (i+1)) NOT net = slim.conv2d(net, 256, [3, 3], scope='conv3_' % (i+1))
Loading
Please sign in to comment