Introduction ------------ **Machine learning is a branch of artificial intelligence (AI)** focused on developing algorithms and models that enable computers to **learn patterns** and make data-based decisions. Instead of being explicitly programmed to perform a task, a machine learning system improves its performance through experience by analyzing data and recognizing patterns. In machine learning, a **model is a mathematical representation** of the data using set **parameters**. An **estimator** refers to any algorithm that learns or estimates the parameters from data, i.e., fitting the model to the data. Machine learning models can **linear or non-linear**, `see ML map `_. Machine learning can adress various type of problems, including: 1. `Supervised learning `_ Learn a function to predict output or target *y* given input *X*. a. **Regression** problems: *y* is quantitative. b. **Classification** problems *y* is qualitative/categorical, i.e., (labels). 2. `Unsupervised learning `_: Learn the hidden structure of the data *X* a. **Dimensionality reduction** (or feature extraction) in machine learning refers to techniques that reduce the number of input variables or features in a dataset while preserving essential information and exploiting redundant or irrelevant features. It can be helpful for visualization or analysis of high-dimension data. b. **Clustering** groups similar data points together based on their features. It helps identify patterns or structures within the data by organizing it into clusters, where points within the same cluster are more similar to each other than to those in different clusters.