Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
ann = ANN(2, 10, 1)
2
%timeit -n 1 -r 1 ann.train(zip(X,y), iterations=100)
3
plot_decision_boundary(ann)
4
plt.title("Our model with 10 hidden units and 100 iterations")
5
6