
Supervised, Unsupervised, and Reinforcement Learning
How three major learning settings differ in the feedback they provide, the patterns they seek, and the claims their results can support.
Sumber
Ringkasan pelajaran lengkap

Supervised, unsupervised, and reinforcement learning describe three different ways of organizing a learning problem. They are not competing labels for the same method. Each specifies what experience is available to a system and what kind of signal guides improvement. Knowing the difference helps educators ask a practical question before discussing algorithms: what information tells the system that it is doing better?
In supervised learning, examples are paired with target outputs. A model may learn to classify an image, estimate a score, or predict whether a learner will answer an item correctly. Classification predicts categories, while regression predicts quantities. Training compares predictions with known targets and adjusts the model to reduce error. The targets are often called labels, but they are not automatically ground truth. A label may reflect a human judgment, a measurement process, or a historical decision with its own uncertainty and bias. Evaluation therefore needs separate data and attention to how the labels were produced.
Unsupervised learning begins without a target output for every example. The system looks for structure in the inputs, such as clusters, lower-dimensional representations, unusual cases, or recurring associations. A grouping can help people explore a large collection, but the algorithm does not discover a single correct interpretation of the world. Results depend on the selected features, similarity measure, model assumptions, and number of groups. A cluster of students, for example, should not be treated as a natural ability category simply because a procedure separated their records.
Reinforcement learning concerns an agent that takes actions in an environment and receives rewards or other evaluative signals over time. The goal is to learn a policy for choosing actions that leads to greater expected return. This setting introduces delayed consequences and the exploration problem: the agent must sometimes try uncertain actions to learn whether they are useful. Reward design is consequential. A tutoring agent rewarded only for immediate correctness might give excessive hints, while a reward that considers later independent performance could support a different policy.
Real systems can combine these settings. A model may learn representations without labels, refine them with supervised examples, and then use feedback from interaction. The correct choice depends on the decision, available evidence, acceptable risk, and evaluation plan. In education, the names do not guarantee validity. Teams still need representative data, independent testing, subgroup analysis, privacy protection, and accountable human review. Practitioners should also ask how often feedback arrives, whether it is delayed or incomplete, how errors affect future decisions, and who can challenge an automated result. These operational details can matter as much as the algorithm family. The most useful distinction is the feedback structure: targets guide supervised learning, patterns in inputs guide unsupervised learning, and consequences across actions guide reinforcement learning.


