AI Terms Dictionary

A comprehensive multilingual AI terminology dictionary

Definition

Supervised learning involves feeding an algorithm with data that includes both inputs and correct answers (labels). The model learns to map inputs to outputs by minimizing prediction errors. This technique is foundational for classification and regression tasks, requiring high-quality labeled datasets for effective training.

Summary

A machine learning paradigm where models are trained on labeled input-output pairs.

Key Concepts

Use Cases

Code Example

1
2
3
from sklearn.linear_model import LinearRegression
model = LinearRegression()
model.fit(X_train, y_train)