Skip to content

Commit 4b01d44

Browse files
committed
Fixing comments
1 parent 70cf82a commit 4b01d44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/network_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def backprop(self, training_data, n, eta):
8080
for x, y in training_data:
8181
# feedforward
8282
activation = x
83-
activations = [x] # list to store all the activations
84-
zs = [] # list to store all the z vectors
83+
activations = [x] # list to store all the activations, layer by layer
84+
zs = [] # list to store all the z vectors, layer by layer
8585
for b, w in zip(self.biases, self.weights):
8686
z = np.dot(w, activation)+b
8787
zs.append(z)

0 commit comments

Comments
 (0)