Skip to content

Instantly share code, notes, and snippets.

@yoel-zeldes
Last active July 30, 2018 14:49
Show Gist options
  • Save yoel-zeldes/a3a07c360c25c805bb9f9c93e1d31de6 to your computer and use it in GitHub Desktop.
Save yoel-zeldes/a3a07c360c25c805bb9f9c93e1d31de6 to your computer and use it in GitHub Desktop.
def discriminator(x):
with tf.variable_scope('discriminator', reuse=tf.AUTO_REUSE):
return tf.contrib.layers.fully_connected(x,
num_outputs=1,
activation_fn=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment