Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created November 25, 2018 14:09
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 NMZivkovic/77ff221bae195d2ca3e69d4c3231ca1b to your computer and use it in GitHub Desktop.
Save NMZivkovic/77ff221bae195d2ca3e69d4c3231ca1b to your computer and use it in GitHub Desktop.
learning_rate = 0.1
# Weights and biases
hiddel_layer_weights = tf.Variable(tf.random_normal([inout_dim, encoded_dim]))
hiddel_layer_biases = tf.Variable(tf.random_normal([encoded_dim]))
output_layer_weights = tf.Variable(tf.random_normal([encoded_dim, inout_dim]))
output_layer_biases = tf.Variable(tf.random_normal([inout_dim]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment