How to create a Neural Network in JavaScript in only 30 lines of code
medium.freecodecamp.org
How to create a Neural Network in JavaScript in only 30 lines of code
1–6 of 6 posts
Re: How to create a Neural Network in JavaScript in only 30 lines of code
#2I learned backpropagation through understanding how computational graph works. Though you need a little bit of differential calculus. But it's not that hard though.
Re: How to create a Neural Network in JavaScript in only 30 lines of code
#3Well, of course you can create a neural network in Javascript in only 30 lines of code if you use a library!
Re: How to create a Neural Network in JavaScript in only 30 lines of code
#4Posts like these should be considered click bait. If you are using a library then technically it's not you writing from scratch.
Unless you are writing vanilla JavaScript without calling other libraries, all you are doing is importing other code.
So in your count, perhaps include the number of lines of the library that is actually doing the work.
Re: How to create a Neural Network in JavaScript in only 30 lines of code
#5Posts like these should be considered click bait. If you are using a library then technically it's not you writing from scratch. Unless you are writing vanilla JavaScript without calling other libraries, all you are doing is importing other code. So in your count, perhaps include the number of lines of the library that is actually doing the work.
Indeed, create a neural network in only two lines:
import * as nn from 'neural-network'
nn.create()Re: How to create a Neural Network in JavaScript in only 30 lines of code
#6https://synaptic.juancazala.com/#/xor
just cutting the middleman