Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aymericdamien authored Jun 16, 2016
1 parent 368d7e3 commit 2835cca
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions examples/3_NeuralNetworks/recurrent_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,9 @@

# Define weights
weights = {
'hidden': tf.Variable(tf.random_normal([n_input, n_hidden])),
'out': tf.Variable(tf.random_normal([n_hidden, n_classes]))
}
biases = {
'hidden': tf.Variable(tf.random_normal([n_hidden])),
'out': tf.Variable(tf.random_normal([n_classes]))
}

Expand Down

0 comments on commit 2835cca

Please sign in to comment.