1. Basic background Knowledge of Machine Learning

This section will cover the necessary content on machine learning methods and techniques to be able to create their own task and model

1.1. Machine Learning Definition

The automatic process of learning useful and meaningful information from a given dataset. There are 2 types of Machine Learning methods: Supervised and Un-Supervised Learning.

1.2. Supervised Machine Learning Models

Linear Regression Model:

Linear Regression captures the Linear relationship between an outcome variable and the features. The relationship is expressed as a hyperplane:

$$ y = b_0+b_1x_1+b_2x_2 +...+ b_nx_n $$

K-Nearest Neighbors (KNN) Model:

Finds K number of closest data points to the test instance we’re trying to classify. Then we use majority voting to determine the test instance class label. The closest data points are calculated using distance measures such as Euclidean distance, Manhattan distance, cosine similarity, etc.

1_3SwcOCUyVdGauhHrHvOaLA.png