Three ways machines learn -- and why it matters for your project
In Lesson 1, you learned where a model sits in the AI family tree -- traditional ML, deep learning, LLM. That tells you what kind of tool it is.
But there is a second question that is just as important: how did the model learn? Two papers can both use random forests, but one is trying to predict outcomes and the other is trying to discover patient subgroups. Those are fundamentally different tasks, requiring different data, different validation, and different interpretation.
The learning paradigm tells you what data you need before you start. Get this wrong and your entire project is dead on arrival -- not because the algorithm is bad, but because you collected the wrong information.
Every ML model learns in one of three ways. Tap each card to see the details.
The paradigm determines what data you need to collect. If you want to predict outcomes (supervised), you need labeled outcome data for every patient. If you want to discover patient subtypes (unsupervised), you need lots of variables but no outcome is required. If you want to optimize sequential decisions (reinforcement), you need time-series data with actions and results.
This is the first question for any new ML project: Am I predicting, discovering, or optimizing?
When you are reading a paper or planning a project, one question separates all three paradigms.
| Supervised | Unsupervised | Reinforcement | |
|---|---|---|---|
| Needs labeled outcomes? | Yes | No | No (uses rewards) |
| Goal | Predict | Discover | Optimize |
| Clinical translation | "What will happen to this patient?" | "Are there patient subtypes we have not recognized?" | "What is the best action to take right now?" |
| Evaluation | AUC, calibration, accuracy | Silhouette score, clinical validity of clusters | Cumulative reward, policy improvement |
| Frequency in vasc surg lit | Very common | Occasional | Rare |
Common Confusion: Unsupervised learning does not mean the model is "unsupervised" in the sense of being unmonitored or unvalidated. It means the model does not have labeled outcomes to learn from. You still need to validate whether the clusters it finds are clinically meaningful -- that part requires your expertise as a clinician.
Every paradigm maps to something you have done before. The vocabulary is new; the concepts are not.
Logistic regression predicting 30-day mortality? Supervised classification. Cox proportional hazards modeling time to graft failure? Supervised regression (with censoring). The only difference with ML is the algorithm is more flexible -- random forest instead of logistic regression, gradient boosting instead of Cox -- but the setup is identical: features in, labeled outcome out.
If you have built a REDCap database with predictor variables and an outcome column, you have set up a supervised learning problem.
When you look at a group of CLTI patients and think "these fall into a few distinct patterns" -- that intuition is what clustering formalizes. When a paper uses principal component analysis (PCA) to collapse a long list of variables into a few summary scores, that is dimensionality reduction. You may not have called it "unsupervised learning," but the concept is not new.
Unsupervised learning is exploratory. It generates hypotheses. Supervised learning tests them.
You make a clinical decision (start heparin), observe the result (aPTT at 6 hours), and adjust (increase the rate). That iterative process is reinforcement learning in human form. The RL paradigm formalizes this: state (patient vitals), action (drug dose), reward (therapeutic range), repeat.
The difference: RL algorithms can process thousands of patients simultaneously and find optimal policies that account for interactions a single clinician cannot track. The limitation: they need extensive data and a well-defined reward function, which is hard to specify for complex surgical decisions.
Here is the practical implication: when you read an ML paper, the paradigm tells you how to evaluate it. Supervised? Check discrimination and calibration (Module 8). Unsupervised? Ask whether the discovered clusters are clinically actionable and reproducible. Reinforcement? Ask how the reward function was defined and whether it captures what actually matters for patients.
Real vascular surgery ML studies, simplified. Identify which learning paradigm each one used.
Module 1 - Lesson 2 complete
The next time someone proposes an ML project, your first question is: "Are we predicting, discovering, or optimizing?" The answer determines everything that follows -- what data you collect, what algorithm you use, and how you validate the results.