My Progress

[Supervised ML] Review - 11 본문

AI/ML Specialization

[Supervised ML] Review - 11

ghwangbo 2023. 8. 3. 15:54
반응형

Overview

This is the overview of supervised learning. Based on the characteristics of problems, we can divide problems into regression and classification. To solve the problem, we use linear regression for regression and logistic regression for classification problem. We have to get the best linear or logistic regression formula that fits the datasest. The way to find the formula is the cost function. By finding the minimum cost between the regression formula's output or prediction and the answer of the dataset, we can find the best regression formula to solve the problem. But we cannot manually test out every single w and b to get the formula. We can find the best w and b through gradient descent. We also have a different problem: bias and variance. If our formula underfits or overfits the data, we have to change the formula to be the right fit. We can do this by regularization. By increasing the number of x, we can decrease the number of w. 

반응형