How to create a Neural Network in JavaScript in only 30 lines of code (medium.freecodecamp.org) 22 points by valentinebm 9y ago ↗ HN
[–] e19293001 9y ago ↗ I learned backpropagation through understanding how computational graph works. Though you need a little bit of differential calculus. But it's not that hard though.
[–] altvali 9y ago ↗ Well, of course you can create a neural network in Javascript in only 30 lines of code if you use a library!
[–] chirau 9y ago ↗ Posts 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. [–] wimagguc 9y ago ↗ Indeed, create a neural network in only two lines: import * as nn from 'neural-network' nn.create()
[–] wimagguc 9y ago ↗ Indeed, create a neural network in only two lines: import * as nn from 'neural-network' nn.create()
5 comments
[ 3.6 ms ] story [ 17.6 ms ] threadUnless 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.
just cutting the middleman