Back to Libraries
ml5.js
6k
Friendly machine learning for the web
License
MIT
Released
2018
Stars
6k
Use Cases
Creative coding with ML, beginner-friendly AI, image classification, pose detection
Code Example
const classifier = ml5.imageClassifier('MobileNet', modelReady);
function modelReady() {
classifier.classify(document.getElementById('image'), gotResult);
}