Answers for "what is ml5.js"

2

ml5 cdn

<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js"></script>
Posted by: Guest on December-05-2020
0

how to use ml5.js

// Step 1: Create an image classifier with MobileNet
const classifier = ml5.imageClassifier("MobileNet", onModelReady);

// Step 2: select an image
const img = document.querySelector("#myImage");

// Step 3: Make a prediction
let prediction = classifier.predict(img, gotResults);

// Step 4: Do something with the results!
function gotResults(err, results) {
  console.log(results);
  // all the amazing things you'll add
}
Posted by: Guest on October-26-2020

Browse Popular Code Answers by Language