def _vgg_fully_connected(self, x, n_in, n_out, scope): with tf.variable_scope(scope): fc = ops.linear(x, n_in, n_out) return fc