Skip to content

Instantly share code, notes, and snippets.

@RahulBhalley
Last active March 11, 2017 13:28
Show Gist options
  • Save RahulBhalley/7a9bc2199eadb26ba01498fd60c1cd18 to your computer and use it in GitHub Desktop.
Save RahulBhalley/7a9bc2199eadb26ba01498fd60c1cd18 to your computer and use it in GitHub Desktop.
# 1st feedforward propagation
XW = tf.matmul(X, tf.transpose(W))
XW_c = tf.add(XW, tf.transpose(c))
a_XW_c = tf.nn.relu(XW_c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment