Supervised learning trains on input-output pairs where the correct output, called the label, is supplied with each example. The label is what makes the error signal direct and immediate.
A labeled dataset in practice
An email dataset where each message is stored together with a human-assigned tag, spam or not spam, is a labeled dataset. During training the model predicts a tag for a message, compares it with the stored tag, and the mismatch drives the adjustment. At use time the tag is no longer available, so the model must supply it from the message alone.
The label is only present during training. If labels are missing, expensive, or wrong, supervised learning degrades — this is the practical cost of this style.