def _vgg_conv_relu(self, x, n_in, n_out, scope): with tf.variable_scope(scope): conv = ops.conv2d(x, n_in, n_out, 3, 1, p='SAME') relu = tf.nn.relu(conv) return relu