Skip to content

Commit 41171d6

Browse files
authored
Update Exercise_04_2_solution.ipynb
add missing comma
1 parent 959dd37 commit 41171d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exercise_04_2_solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
" def __init__(self, units=1, input_dim=1): # when intializing the layer the weights have to be initialized\n",
8989
" super(LinearLayer, self).__init__()\n",
9090
" w_init = tf.random_normal_initializer()\n",
91-
" self.w = self.add_weight(shape=(input_dim, units), initializer=w_init\n",
91+
" self.w = self.add_weight(shape=(input_dim, units), initializer=w_init,\n",
9292
" trainable=True)\n",
9393
"\n",
9494
" def call(self, inputs): # when calling the layer the linear transformation has to be performed\n",

0 commit comments

Comments
 (0)