Skip to content

Commit 2c87d2f

Browse files
Update recurrent_network.ipynb
1 parent 2835cca commit 2c87d2f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

notebooks/3_NeuralNetworks/recurrent_network.ipynb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,9 @@
7979
"\n",
8080
"# Define weights\n",
8181
"weights = {\n",
82-
" 'hidden': tf.Variable(tf.random_normal([n_input, n_hidden])),\n",
8382
" 'out': tf.Variable(tf.random_normal([n_hidden, n_classes]))\n",
8483
"}\n",
8584
"biases = {\n",
86-
" 'hidden': tf.Variable(tf.random_normal([n_hidden])),\n",
8785
" 'out': tf.Variable(tf.random_normal([n_classes]))\n",
8886
"}"
8987
]
@@ -275,4 +273,4 @@
275273
},
276274
"nbformat": 4,
277275
"nbformat_minor": 0
278-
}
276+
}

0 commit comments

Comments
 (0)