AI for Business Professionals
Start gently
Training an AI means measuring how wrong it is (the loss) and nudging it, over and over, in the direction that makes the loss smaller. Picture walking downhill.
Key points
Machine Learning Is Pattern-Finding, Automated
Instead of a person writing the rules, the machine finds the patterns itself by working through a large pile of data. There are three basic flavors: supervised learning (learn from matched input-output pairs), unsupervised learning (find structure in data nobody labeled), and reinforcement learning (try things, keep what earns a reward). ChatGPT is a very large supervised model — what it learned from all that text is the probability of the next token.
Probability and Softmax: What the Model Actually Outputs
Every time ChatGPT writes a word, it first computes a probability for every possible next word, then draws one at random from that distribution. Softmax is the formula that turns raw scores into probabilities that add up to 1. Raise the "temperature" setting and the probabilities flatten out — the output gets more creative and less reliable at the same time.
Cosine Similarity: Measuring Meaning with Vectors
Turn a word, a document or an image into a vector, and you can compare meanings by comparing which way those vectors point. This is the idea behind embeddings. A score near 1 means the two things mean nearly the same thing, 0 means they're unrelated, and −1 means they're opposites. In RAG (retrieval-augmented generation), cosine similarity between the question and your documents is what decides which text gets handed to the model.
Overfitting and Generalization: Knowing Where AI Breaks
A model can fit its training data perfectly and still fall apart on anything new. That failure is called overfitting, and it's the single biggest risk in an AI project. The standard defense is to hold back part of your data and score the model only on what it has never seen. In business you meet this as the model that worked beautifully on internal data and was useless on real customers. Whenever someone hands you an accuracy number, ask one question first: is that on held-out data, or on the data it trained on?
The Math Behind Prompt Engineering
A prompt is really a set of conditions on a probability. Give the model a role, the background it needs, a few worked examples, and the output format you want, and you narrow that probability distribution toward the answers you're after. Chain-of-thought prompting — asking the model to show its intermediate steps — works for the same reason: each step it writes becomes another condition sharpening the next one. Once you see prompting as structure rather than intuition, you get better at it much faster.
See it drawn
The horizontal axis is the number of training steps. Where the fall levels off is that model's limit.
Jobs that use this
AI Consultant$200k
Product Manager (AI Products)$150k
Head of Digital Transformation$130k
§
Members-only from here
The practice questions and full career details are for members. $4.99/mo, cancel anytime.
Comments
Sign in to comment