🏠 Home
Benchmark Hub
📊 All Benchmarks 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List Applications 🎨 Creative Free Pages 🎯 FSACB - Ultimate Showcase 🌍 Translation Benchmark
Models
🏆 Top 10 Models 🆓 Free Models 📋 All Models ⚙️ Kilo Code
Resources
💬 Prompts Library 📖 AI Glossary 🔗 Useful Links

AI Glossary

The complete dictionary of Artificial Intelligence

162
categories
2,032
subcategories
23,060
terms
📖
terms

One-vs-Rest (OvR)

Strategy for decomposing multi-class classification into multiple binary classifiers, where each classifier distinguishes one class against all the others.

📖
terms

One-vs-One (OvO)

Approach that trains a binary classifier for each possible pair of classes, requiring n(n-1)/2 classifiers for n classes.

📖
terms

Multi-class confusion matrix

An NxN table where N is the number of classes, displaying the model's correct and incorrect predictions to evaluate its classification performance.

📖
terms

F1 macro score

Unweighted average of the F1 scores of each class, treating all classes equally regardless of their frequency in the dataset.

📖
terms

F1 micro score

Metric that calculates the F1 score globally by counting the total true positives, false negatives, and false positives across all classes.

📖
terms

F1 weighted score

Weighted average of the F1 scores per class, where each class contributes proportionally to its number of samples in the dataset.

📖
terms

Logits

Unnormalized raw scores produced by the last layer of a neural network before applying the softmax function for multi-class classification.

📖
terms

Multi-class cross-entropy

Loss function that measures the divergence between the predicted probability distribution and the actual distribution of labels in a multi-class context.

📖
terms

Stratified sampling

Sampling technique that preserves the proportion of classes in training and test subsets to avoid distribution bias.

📖
terms

Class imbalance

Situation where classes are not represented equally in the dataset, which can bias learning toward majority classes.

📖
terms

Random undersampling

Undersampling method that randomly reduces the number of samples from majority classes to balance the class distribution.

📖
terms

Random oversampling

Oversampling approach that randomly duplicates samples from minority classes to achieve balance with majority classes.

📖
terms

Multi-class precision

Metric calculated as the average of precisions per class, where the precision of a class is the ratio of true positives to the total positive predictions.

📖
terms

Multi-class recall

Metric representing the average of recalls per class, measuring the model's ability to identify all relevant samples for each class.

📖
terms

Multi-class ROC curve

Extension of the ROC curve for multi-class classification, generally calculated using a One-vs-Rest or macro-average approach.

📖
terms

Multi-class AUC

Area under the ROC curve for multi-class problems, calculated as the average of binary AUCs according to the One-vs-Rest approach.

📖
terms

Multi-class decision trees

Rule-based algorithms that recursively partition the feature space to create leaves corresponding to the different classes.

📖
terms

Multi-class logistic regression

Extension of logistic regression using the softmax function to model the probability of belonging to each of the K possible classes.

📖
terms

Multi-class SVM

Support vector machines adapted for multi-class classification, typically implemented via One-vs-Rest or One-vs-One strategies.

📖
terms

Multi-class KNN

K-nearest neighbors algorithm that classifies a new observation according to the majority class among its k nearest neighbors.

📖
terms

Multi-class Naïve Bayes

Probabilistic classifier based on Bayes' theorem with conditional independence assumption, naturally extended to multi-class problems.

📖
terms

Multi-class Random Forest

Ensemble method combining multiple decision trees trained on bootstrap subsamples, with classification by majority vote.

🔍

No results found