Saw this and thought, "Huh, I wonder if harthur is back at it", but nope. Nice to see someone picked it up though!
I followed the progress back then and felt very bad for both, that such an awesome library was going down and the bad situation she found herself into. Hope she is doing well! And happy to see brain being reborn.
Brain.js
11–20 of 56 posts
Re: Brain.js
#12A 19-part interactive neural network course that uses brain.js was posted to HN last week: https://scrimba.com/g/gneuralnetworks
Re: Brain.js
#13y tho? https://js.tensorflow.org/
Re: Brain.js
#14Re: Brain.js
#15y tho? https://js.tensorflow.org/
how to approximate the XOR function using brain.js
const net = new brain.NeuralNetwork(config);
net.train([{input: [0, 0], output: [0]},
{input: [0, 1], output: [1]},
{input: [1, 0], output: [1]},
{input: [1, 1], output: [0]}]);
const output = net.run([1, 0]); // [0.987]
This is how you win over newcomers -- quick, accessible demonstrations of the product/library's capabilities. A sample is worth a thousand words. Tensorflow may have a lot of great, detailed examples, but its documentation fails in this regard.Re: Brain.js
#16Earlier quoted context omitted.
Even as someone who has only superficial knowledge of the topic, that course was very underwhelming.
As someone with absolutely no knowledge of the topic, I found that course to be very digestible and pleasant.
Re: Brain.js
#17Saw this and thought, "Huh, I wonder if harthur is back at it", but nope. Nice to see someone picked it up though!
I followed the progress back then and felt very bad for both, that such an awesome library was going down and the bad situation she found herself into. Hope she is doing well! And happy to see brain being reborn.
Re: Brain.js
#18Re: Brain.js
#19y tho? https://js.tensorflow.org/
Also... there are some groups that use Javascript for this kind of work (We use Typescript for our projects), but the vast majority of it is in Python. As much as I dislike that language, it completely dominates AI and data science.
Re: Brain.js
#20y tho? https://js.tensorflow.org/
I share the concern about mono-cultures in tech, but if you are serious about getting into data science or AI I have to agree with the OP -- stick to TensorFlow. TensorFlow.js is not a first class citizen of that ecosystem, but its close enough to get real work done. Also... there are some groups that use Javascript for this kind of work (We use Typescript for our projects), but the vast majority of it is in Python.…
Then you won't be using Javascript anyways. Like you said, Python is the way to go: PyTorch, TF, PyMC3, scikit-learn, etc.