Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
ann = ANN(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")
5
6