There was an error while loading. Please reload this page.
1 parent 26f5d64 commit bb30362Copy full SHA for bb30362
solutions/sol_111.py
@@ -1,4 +1,4 @@
1
-ann = ANN(2, 10, 1)
+ann = MLP(2, 10, 1)
2
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=2)
3
plot_decision_boundary(ann)
4
plt.title("Our next model with 10 hidden units")
solutions/sol_112.py
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=100)
plt.title("Our model with 10 hidden units and 100 iterations")
0 commit comments