-
-
Save Kaoschuks/c56084434a984a510fd3d73bb9629abf to your computer and use it in GitHub Desktop.
Make a prediction on a TensorFlow.js model, details here: https://medium.com/tensorflow/introducing-tensorflow-js-machine-learning-in-javascript-bf3eab376db
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Get measurements for a new flower to generate a prediction | |
| // The first argument is the data, and the second is the shape. | |
| const inputData = tf.tensor2d([[4.8, 3.0, 1.4, 0.1]], [1, 4]); | |
| // Get the highest confidence prediction from our model | |
| const result = model.predict(inputData); | |
| const winner = irisClasses[result.argMax().dataSync()[0]]; | |
| // Display the winner | |
| console.log(winner); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment