Getting Started With TensorFlow - Js - TensorFlow - Medium
Getting Started With TensorFlow - Js - TensorFlow - Medium
js – TensorFlow – Medium
<html>
<head></head>
<body></body>
</html>
Once you have that, the rst thing you’ll need to do is add a reference to
TensorFlow.js, so that you can use the TensorFlow APIs. The JS le is
available on a CDN for your convenience:
<html>
<head>
<!-- Load TensorFlow.js -->
<!-- Get latest version at
https://github.com/tensorflow/tfjs -->
<script
src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@0.11.
2"> </script>
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 1/6
19/3/2019 Getting Started with TensorFlow.js – TensorFlow – Medium
Right now I’m using version 0.11.2, but be sure to check GitHub for the
most recent version.
Consider a straight line with the formula Y=2X-1. This will give you a
set of points like (-1, -3), (0, -1), (1, 1), (2, 3), (3, 5) and (4, 7). While
we know that the formula gives us the Y value for a given X, it’s a nice
exercise in training a model for a computer that is not explicitly
programmed with this formula, to see if it can infer values of Y for given
values of X when trained on this data.
model.compile({
loss: 'meanSquaredError',
optimizer: 'sgd'
});
To train the model, I’ll need a tensor with my input (i.e. ‘X’) values, and
another with my output (i.e. ‘Y’) values. With TensorFlow, I also need to
de ne the shape of that given tensor:
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 2/6
19/3/2019 Getting Started with TensorFlow.js – TensorFlow – Medium
To train the model we use the t method. To this we pass the set of X
and Y values, along with a number of epochs (loops through the data)
in which we will train it. Note that this is asynchronous, so we should
await the return value before proceeding, so all this code needs to be in
an async function (more on that later):
Once that’s done, the model is trained, so we can predict a value for a
new X. So, for example, if we wanted to gure out the Y for X=10 and
write it on the page in a <div>, the code would look like this:
document.getElementById('output_field').innerText =
model.predict(tf.tensor2d([10], [1, 1]));
Note that the input is a tensor, where we specify that it’s a 1x1 tensor
containing the value 10.
The result is written on the page in the div, and should look something
like this:
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 3/6
19/3/2019 Getting Started with TensorFlow.js – TensorFlow – Medium
Wait, you might ask — why isn’t it 19? It’s pretty close, but it’s not 19!
That’s because the algorithm has never been given the formula — it
simply learns based on the data it was given. With more relevant data
any ML model will give greater accuracy, but this one isn’t bad
considering it only had 6 pieces of data to learn from!
For your convenience, here’s the entire code for the page, including the
declaraion of all this code as an async function called ‘learnLinear’:
<html>
<head>
<!-- Load TensorFlow.js -->
<!-- Get latest version at
https://github.com/tensorflow/tfjs -->
<script
src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@0.11.
2">
</script>
</head>
<body>
<div id="output_field"></div>
</body>
<script>
async function learnLinear(){
const model = tf.sequential();
model.add(tf.layers.dense({units: 1, inputShape:
[1]}));
model.compile({
loss: 'meanSquaredError',
optimizer: 'sgd'
});
document.getElementById('output_field').innerText =
model.predict(tf.tensor2d([10], [1, 1]));
}
learnLinear();
</script>
<html>
And that’s all it takes to create a very simple Machine Learned model
with TensorFlow.js that executes in your browser. From here you have
the foundation to go forward with more advanced concepts.
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 4/6
19/3/2019 Getting Started with TensorFlow.js – TensorFlow – Medium
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 5/6
19/3/2019 Getting Started with TensorFlow.js – TensorFlow – Medium
https://medium.com/tensorflow/getting-started-with-tensorflow-js-50f6783489b2 6/6