I need an example of the simplest neural network in JavaScript capable of learning, or in any other language, but then without the use of frameworks (so that I could rewrite it in JavaScript). 2 inputs, hidden layer of 5 neurons, exit. (learning XOR OR NAND AND functions)
found a lot of projects
- http://caza.la/synaptic/#/
- https://github.com/karpathy/convnetjs
- http://blog.webkid.io/neural-networks-in-javascript/
- http://cs.stanford.edu/people/karpathy/convnetjs/started.html
- https://medium.com/javascript-scene/how-to-build-a-neuron-exploring-ai-in-javascript-pt-1-c2726f1f02b2#.mi67zuk5q
- http://harthur.imtqy.com/brain/
figured out with theory to the method of back propagation of error, but with practice until the tension. Please help.