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