Skip to content

Commit f5ddde1

Browse files
Fix more typos in convolution_neural_network.py
1 parent a97d835 commit f5ddde1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neural_network/convolution_neural_network.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
- - - - - -- - - - - - - - - - - - - - - - - - - - - - -
33
Name - - CNN - Convolution Neural Network For Photo Recognizing
4-
Goal - - Recognize Handing Writing Word Photo
4+
Goal - - Recognize Handwriting Word Photo
55
Detail: Total 5 layers neural network
66
* Convolution layer
77
* Pooling layer
@@ -304,7 +304,7 @@ def draw_error():
304304
plt.grid(True, alpha=0.5)
305305
plt.show()
306306

307-
print("------------------Training Complished---------------------")
307+
print("------------------Training Complete---------------------")
308308
print((" - - Training epoch: ", rp, f" - - Mse: {mse:.6f}"))
309309
if draw_e:
310310
draw_error()
@@ -353,5 +353,5 @@ def convolution(self, data):
353353

354354
if __name__ == "__main__":
355355
"""
356-
I will put the example on other file
356+
I will put the example in another file
357357
"""

0 commit comments

Comments
 (0)