The AI Lab — offline copy (Class 8)
====================================

A self-contained set of playgrounds about the ideas behind AI:
language, vision, and learning from data. No internet needed.

HOW TO RUN
----------
Just double-click "index.html" — it opens in your web browser and works.

(If your browser is fussy about local files, open a terminal in this folder and run:
   python3 -m http.server 8000
 then visit  http://localhost:8000 )

WHAT'S INSIDE
-------------
  index.html ................... start here (the hub)

  Language:
  tokenization.html ............ chop text into tokens
  cleaning.html ................ stop-words, stemming, lemmatization
  embeddings.html .............. words as numbers (a meaning map)
  next-word.html ............... guess-the-next-word game
  training-vs-inference.html ... how an LLM learns vs answers

  Vision:
  vision.html .................. pixels + an edge-finding filter

  Learning from data:
  classification.html .......... learning WITH a teacher (labels)
  clustering.html .............. learning with NO labels (k-means)

  style.css .................... shared styling

Everything runs in the browser using built-in fonts — nothing is downloaded.
