8 notes · co-occurs with 7 tags · last updated Jun 22, 2026

Notes tagged #tabular-ml
01
Decision Tree
A Decision Tree is a supervised learning algorithm used for both classification and regression tasks.
Jun 22, 2026
General ML
02
Gradient boosting
Gradient Boosting is an ensemble machine learning technique (boosting) that combines weak learners (typically shallow Decision Tree) sequentially to create a strong predictive model.
Jun 22, 2026
General ML
03
K-means clustering
K-means is an unsupervised machine learning algorithm used for partitioning a dataset into K distinct, non-overlapping subgroups (clusters).
Jun 22, 2026
General ML
04
Linear Regression
Linear regression is a supervised algorithm or statistical method that learns to model a dependent variable (target) as a function of some independent variables (features) by finding a line (or surface) that best “fits” the data.
Jun 22, 2026
General ML
05
Logistic regression
Logistic regression is a statistical method used for binary classification problems, modeling the probability of an instance belonging to a particular class.
Jun 22, 2026
General ML
06
Random Forest
Random Forest is an ensemble learning method (bagging) that constructs a multitude of decision trees at training time and outputs the class that is the mode of the classes (classification) or mean prediction (regression) of the individual trees.
Jun 22, 2026
General ML
07
SVM
Support Vector Machines (SVM) is a supervised learning algorithm used for classification, regression, and outlier detection.
Jun 22, 2026
General ML
08
Regression metrics
Regression metrics are quantitative measures used to evaluate the performance of regression models, which predict continuous values rather than discrete classes.
Jun 22, 2026
Metrics and losses