AI Terms Dictionary

A comprehensive multilingual AI terminology dictionary

Definition

Labeled data consists of input samples paired with corresponding ground truth labels, serving as the foundation for supervised machine learning. It allows algorithms to learn the mapping between inputs and outputs by minimizing prediction errors during training. High-quality labeled data is critical for model accuracy, but its creation often requires significant human effort and domain expertise to ensure correctness and consistency across the dataset.

Summary

Data where the correct output or target value is provided alongside the input features.

Key Concepts

Use Cases

Code Example

1
2
3
4
5
import pandas as pd
# Example of loading labeled data
df = pd.read_csv('train.csv')
X = df.drop('label', axis=1)
y = df['label']