Skip to content

Instantly share code, notes, and snippets.

@RahulBhalley
Last active March 11, 2017 16:41
Show Gist options
  • Save RahulBhalley/f04d8957101901c89c9c68fded837963 to your computer and use it in GitHub Desktop.
Save RahulBhalley/f04d8957101901c89c9c68fded837963 to your computer and use it in GitHub Desktop.
# 2nd layer hyperparameters of our network
w = tf.Variable([[1], [-2]]) # weights between hidden layer and output layer.
b = tf.Variable([[0], [0], [0], [0]]) # biases for output units.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment