supervised learning编辑历史

当前语言en
版本数量1
回滚能力预留
人工修改 deepseek-ai

提交《supervised learning》修改,状态:approved

查看这次修改
# Supervised Learning

Supervised learning is a subcategory of machine learning and artificial intelligence where a model is trained on a labeled dataset, meaning that each training example is paired with an output label. The algorithm learns to map inputs to outputs by identifying patterns in the data, with the goal of making accurate predictions on unseen data. Common tasks include classification (predicting discrete categories) and regression (predicting continuous values). It is widely used in applications such as image recognition, spam detection, and predictive analytics.

## 1 Introduction to Supervised Learning

### 1.1 Definition and Core Concepts

Supervised learning refers to the process of inferring a function from labeled training data. The training dataset consists of input–output pairs, where the input is typically a feature vector and the output is the desired label. The algorithm adjusts its internal parameters to minimize the error between its predictions and the true labels. Core concepts include the training set, test set, features, labels, hypothesis, and loss function.

### 1.2 Distinction from Unsupervised and Reinforcement Learning

Unsupervised learning uses unlabeled data, aiming to discover hidden structures such as clusters or latent representations. Reinforcement learning involves an agent that learns by interacting with an environment, receiving rewards or penalties based on its actions. In contrast, supervised learning relies explicitly on ground-truth labels, making it suitable for tasks where historical labeled data is available.

### 1.3 Historical Development

The foundations of supervised learning date back to the 1950s and 1960s with the perceptron algorithm (Rosenblatt, 1958) and the development of linear regression. The 1980s saw the rise of decision trees and neural networks with backpropagation. The 1990s introduced support vector machines and ensemble methods. The 2010s and beyond have been dominated by deep learning, fuel
Ciallo~(∠・ω< )⌒★