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