AI Boss Courses / Course 01
ChatGPT, Claude, Gemini, Copilot: they all run on the same machinery. This course opens the hood. You will train a small neural network with your own hands, see why these models sometimes invent facts, and leave able to use them at work with skill instead of superstition.
Outcomes
The Evidence
less time and 18% higher quality on professional writing tasks for workers using an LLM assistant, in a randomized experiment.
Noy & Zhang, Science 381 (2023)faster completion of a programming task by developers using an LLM coding assistant in a controlled trial.
Peng et al., "The Impact of AI on Developer Productivity" (2023)productivity gain for the least experienced customer support agents given an LLM assistant. Experts gained far less. Skill transfers down.
Brynjolfsson, Li & Raymond, NBER 31161 (2023)sanction against lawyers who filed a brief with six fake cases invented by ChatGPT. One skipped step, checking that the cases existed, turned a routine filing into a global story.
Mata v. Avianca, S.D.N.Y. (2023)Curriculum
Each module opens as its own page: the lecture, its labs and games, and next and previous controls. Your progress is saved on this device, so you can leave and pick back up any time.
The whole secret fits in one sentence. A large language model is a machine that answers one question, billions of times per conversation: "given the text so far, what is likely to come next?" It does not look things up in a database. It does not "know" facts the way you do. It has read an enormous amount of text and compressed the patterns of that text into numbers. When it writes, it is rolling weighted dice over what word-piece should come next, again and again, very fast.
Hold onto that sentence. Every strength and every weakness of these tools falls out of it. Why are they brilliant at drafting emails? Because millions of emails shaped the dice. Why do they sometimes invent a court case or a citation? Because the dice produce plausible text, and plausible is not the same as true.
Interactive Lab 1
Type any sentence. Watch it break into tokens, the only thing the model ever sees. Try a common word, then a rare one, then "strawberry". This is an approximation of how real tokenizers (like BPE) behave, simplified so you can see the idea.
Why this matters at work: models are priced and limited by tokens, and they can struggle with letter-level questions ("how many r's in strawberry?") because they never see letters, only chunks.
Game 1
For each sentence, pick the word an LLM would rate most likely. You are not guessing the truth. You are guessing the statistics of human text. That distinction is the entire lesson.
Feynman said the best way to understand a thing is to build it. You are about to train a neural network, the same species of machine that powers every LLM, just small enough to hold in your head: 2 inputs, 2 hidden neurons, 1 output, 9 numbers total.
The task is real office work: should this support ticket be escalated? The network reads two signals, urgency and customer frustration, each scored 0 to 1. It must output near 1 (escalate) when either signal is high, and near 0 (routine) when both are low. You have four training examples, shown below the diagram.
A neuron is embarrassingly simple: multiply each input by a weight, add the results plus a bias, and squash the sum into a number between 0 and 1. Whatever intelligence emerges comes from stacking thousands of layers of these and finding the right weights.
Interactive Lab 2 • The Centerpiece
Drag the sliders and watch the calculations flow left to right. Line thickness shows weight size; cyan is positive, orange is negative. First try to beat the loss by hand. Then press "Step Downhill" and watch gradient descent do what you were doing, but with calculus. Get the loss below 0.02 to win.
Loss: ?
Voxel Lab
Zoom out from nine weights to the whole picture. Every possible setting of the weights is a point on a landscape, and the height at that point is the loss. Training is a ball rolling downhill. Click anywhere on the terrain to drop the ball and watch gradient descent hunt for a valley.
No ball on the terrain yet. Click to drop one.
One catch is visible from up here: the terrain has more than one valley. Drop the ball near the shallow valley and it settles there, stuck at a loss that is low but not the lowest. Real training fights this with momentum, random restarts, and other tricks. The picture to keep: learning is descent across terrain far too large to ever see all at once.
Now scale the picture up. An LLM is this exact machine with two changes: it has billions of weights instead of nine, and its training goal is not "escalate or not" but "predict the next token of internet text". The loss function rewards it for assigning high probability to the token that actually came next. Everything you just felt in your fingers, the nudging, the downhill steps, the loss falling, happened to GPT-4 and Claude too. Just multiplied by a few trillion.
Read this sentence: "The trophy would not fit in the suitcase because it was too big." What does "it" refer to? You answered instantly: the trophy. Now change one word: "...because it was too small." Suddenly "it" is the suitcase. You resolved that using meaning, not grammar. For decades, computers could not do this.
The breakthrough was attention, introduced in a 2017 paper from Google titled "Attention Is All You Need". The idea: when processing each token, let the model look back at every other token and assign each one a relevance score. High score, strong influence. The architecture built on this trick is the transformer, the T in GPT.
Interactive Lab 3
Click any word to see where its attention flows. Then flip "big" to "small" and click "it" again. Watch the arcs move to a different noun even though the grammar is identical. Arc thickness shows attention strength.
Click a word above.
Remember: the model produces a probability for every possible next token. It then has to pick one. Always picking the single most likely token makes output repetitive and flat. So instead, the model samples: it rolls dice weighted by those probabilities. Temperature is the knob that reshapes the dice.
Low temperature sharpens the distribution: the favorite almost always wins, output becomes consistent and predictable. High temperature flattens it: underdogs win often, output becomes varied, creative, and occasionally unhinged. Neither is "better". They are settings for different jobs.
Interactive Lab 4
The model must complete: "Our quarterly results were ___". Move the slider and watch the probabilities reshape. Then press Sample a few times at temperature 0.2, and again at 1.8. Feel the difference you would feel in a real chat.
Samples: none yet
Prompting is the same skill as briefing a smart new hire on their first day: they are capable, they know nothing about your situation, and they will fill every gap you leave with a guess. The quality of your output is mostly the quality of your brief.
Game 2
Four rounds. Each shows two prompts aimed at the same job. Pick the one that will reliably produce better output, then read why.
A hallucination is the machine doing exactly what it was built to do: produce the most plausible next token. When the truth is well represented in training data, plausible and true coincide. When it is not, the model produces something that sounds right, with the same confident tone either way. The model has no internal signal for "I am making this up".
This is why the danger zone is specifics: citations, case numbers, statistics, URLs, prices, names, dates. These look like facts, pattern-match like facts, and are the easiest things for the model to fabricate fluently.
Game 3
Each round shows an AI answer containing three claims. One is the kind most likely to be fabricated. Click the claim you would verify first. Train your eye for the danger zone.
Scale your checking to stakes times specificity:
In 2023, Samsung engineers pasted proprietary source code and internal meeting notes into ChatGPT to get quick help. The data left the building, and Samsung banned generative AI tools company-wide. The lesson: treat a prompt as a data transfer, because that is exactly what it is.
The exact policies differ by vendor and change over time, which is the point: an AI Boss checks the current data terms of the specific tool, and asks IT which tier the company has, before pasting anything sensitive.
Game 4
You are using a free consumer chatbot with default settings. For each item, decide: safe to paste, or not. Assume no special agreement with the vendor.
Demystified
Final Exam
Twenty multiple choice questions covering all seven modules. You need 80% (16 of 20) to earn the certificate. Every question gets an explanation afterward, and you can retake the exam as many times as you like.
Ready? The exam takes most people 15 to 20 minutes. Your certificate will carry the name you enrolled with.