Machine Learning (ML) is the dope new thing that everyoneâs talking about, because itâs really good at learning from data so that it can predict similar things in the future. Doing ML by hand is pretty annoying since it usually involves matrix math which is zero fun in JavaScript (or if you ask me: anywhere đ ). Thankfully, TensorFlow.js is here to help! Itâs an open source library that has a lot of built-in Machine Learning-y things like models and algorithms so that you donât have to write them from scratch.
Is your problem a Machine Learning problem?
Machine learning is good at classifying and labelling data. The premise of every machine learning problem is:
- Someone gives us some data that was generated according to a secret formula. This data could be a bunch of points (that are generated based on some math equation), but could also be fun, like images (the secret formula could be âsome of these images are chihuahuas and some are blueberry muffins) or bus schedules.
- By looking at this data we were given, we approximate the secret formula so that we can correctly predict a future data point. For example, if weâre given a photo, we will eventually be able to confidently say whether itâs a dog or a muffin.
A fun demo!
If you want to get started, predicting numbers tends to be easier than predicting images, so in this example weâre trying to fit a curve to a bunch of data (this is the same example from the TensorFlow site but with waaaaay more code comments and a prettier graph).
We are given a bunch of points (for x
between -1 and 1, calculate a y
according to
y = a * x^3 + b * x^2 + c * x + d
â we know this is the secret formula but we donât know the
values of those a,b,c,d
coefficients.)
Our goal is to learn these coefficients, so that if weâre given a new x
value, we can say what the y
value should be.
The blue dots are the training points we were given. The red dots would be our guesses,
based on our initial, default coefficients (hella incorrect!). Once you click the train
button, the green dots show how our coefficients are getting better. After you see the default
example, check what happens if you change the shape of the data, or we are given fewer data points or fewer iterations!
How it works
Most machine learning algorithms follow this pattern:
- We have to figure out the âfeaturesâ of the secret formula that generated the data we were given, so that we can learn them. In my opinion, this is like 80% of the complexity of solving an ML problem. In this example, we were told the shape of the secret formula (itâs a cubic!), so the features we have to learn are the coefficients in the polynomial. For something more complex like the âis this a dog or a blueberry muffinâ problem, weâd have to look at pixels and colours and formations and what makes a dog a dog and not a muffin.
- Once we figure out these features (in our case, those
a,b,c,d
coefficients), we initialize them to some random values. We could now use them to make predictions, but they would be teeeeeerrible because theyâre just random. - (Iâm just going to use our actual example from now on and not dogs)
- We start looking at every piece
(x,y)
of training data we were given. We take thex
value, and based on these coefficients we have estimated, we predict what they
value would be. We then look at the correcty
value from the original training data, calculate the difference between the two, and then adjust our coefficients so that our predicted value gets closer to the correct one. - (this, with more math sprinkled in is called âstochastic gradient descentâ. âStochasticâ means probabilistic, and âgradient descentâ should make you think of walking down a hill, towards a sink hole â the higher the hill, the bigger the prediction error, which is why you want to descend towards the error-free hole.)
- This part of code is actually pretty messy (because matrices and derivatives), and TensorFlow does this for us!
- We keep doing this until we use up all the data, and then repeat the entire process so that we iterate over the same data over and over again until at the end weâve pretty much learnt the coefficients!
The code
You can look at the code for the demo on Glitch. I tried to comment most lines of the code with either what the algorithm or TensorFlow are doing (especially when TensorFlow is actually doing a looooot of heavy lifting behind the scenes). I hope it helps!