Skip to content

Instantly share code, notes, and snippets.

@gelehrtecrest
Created August 25, 2017 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gelehrtecrest/0d0ce6876f44c4a7fd771a2df5c621c5 to your computer and use it in GitHub Desktop.
Save gelehrtecrest/0d0ce6876f44c4a7fd771a2df5c621c5 to your computer and use it in GitHub Desktop.
with tf.name_scope('conv1') as scope:
W_conv1 = weight_variable([3, 3, 3, 32])
b_conv1 = bias_variable([32])
h_conv1 = tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1)
print(h_conv1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment