Back to Writing
NOTESmachine-learningteachable-machinegoogleno-code

Google Teachable Machine - No-Code ML Training

August 13, 2020Updated 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:

  1. Go to teachablemachine.withgoogle.com
  2. Create a new project (Image/Pose/Audio)
  3. Train by uploading or capturing samples
  4. 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.