Pynapse, my python AI library | Tutorial

Channel:
Subscribers:
543
Published on ● Video Link: https://www.youtube.com/watch?v=arrJuppqFPE



Duration: 5:59
44 views
2


lets say we want a network with 2 input neurons and two hidden layers with 10 neurons each and 1 output neuron:

Dense(2, 10) this creates 2 input neurons and 10 outputs for a hidden
Dense(10, 10) this connects the 10 neurons and makes another 10 layer
Dense(10, 1) this connects the 10 hidden neurons to the singular output

As you can see this is infinitely expandable.







Tags:
programming
AI
python