Skip to content

Commit bb30362

Browse files
author
Valerio Maggio
committed
Fixed Typo in Solutions for ANN (ANN renamed as MLP class)
1 parent 26f5d64 commit bb30362

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solutions/sol_111.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ann = ANN(2, 10, 1)
1+
ann = MLP(2, 10, 1)
22
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=2)
33
plot_decision_boundary(ann)
44
plt.title("Our next model with 10 hidden units")

solutions/sol_112.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ann = ANN(2, 10, 1)
1+
ann = MLP(2, 10, 1)
22
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=100)
33
plot_decision_boundary(ann)
44
plt.title("Our model with 10 hidden units and 100 iterations")

0 commit comments

Comments
 (0)