Back to Writing
NOTESmachine-learningteachable-machinegoogleno-code
Google Teachable Machine - No-Code ML Training
August 13, 2020•Updated Feb 17, 2026
Teachable Machine is a Google tool for training machine learning models without any coding.
Features:
- Image classification
- Pose detection
- Audio classification
Steps to use:
- Go to teachablemachine.withgoogle.com
- Create a new project (Image/Pose/Audio)
- Train by uploading or capturing samples
- Export the model for use in your application
Example (JavaScript):
const URL = "https://teachablemachine.withgoogle.com/models/YOUR_MODEL_ID/";
async function app() {
const modelURL = URL + "model.json";
const model = await tmImage.load(modelURL, metadataURL);
const predictions = await model.predict(canvas);
}
Teachable Machine is perfect for beginners who want to experiment with machine learning.