DSWoK — Data Science Well of Knowledge
Search
Search
Dark mode
Light mode
Explorer
#tabular-ml
8 notes
· co-occurs with
7 tags
· last updated
May 18, 2026
Co-tags
#
algorithm
7
#
supervised
4
#
tree-based
3
#
ensemble
2
#
clustering
1
#
unsupervised
1
#
evaluation
1
Notes tagged
#tabular-ml
01
Decision Tree
A Decision Tree is a supervised learning algorithm used for both classification and regression tasks.
May 18, 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.
May 18, 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).
May 18, 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.
May 18, 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.
May 18, 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.
May 18, 2026
General ML
07
SVM
Support Vector Machines (SVM) is a supervised learning algorithm used for classification, regression, and outlier detection.
May 18, 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.
May 18, 2026
Metrics and losses