mirror of
https://github.com/donnemartin/data-science-ipython-notebooks.git
synced 2024-03-22 13:30:56 +08:00
5 lines
149 B
Python
5 lines
149 B
Python
ann = ANN(2, 10, 1)
|
|
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=2)
|
|
plot_decision_boundary(ann)
|
|
plt.title("Our next model with 10 hidden units")
|