Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.39 KB

05-linear-regression-simple.md

File metadata and controls

33 lines (23 loc) · 1.39 KB

2.5 Linear regression

Slides

Notes

Model for solving regression tasks, in which the objective is to adjust a line for the data and make predictions on new values. The input of this model is the feature matrix and a y vector of predictions is obtained, trying to be as close as possible to the actual y values. The LR formula is the sum of the bias term (WO), which refers to the predictions if there is no information, and each of the feature values times their corresponding weights. We need to assure that the result is showed on the untransformed scale.

The entire code of this project is available in this jupyter notebook.

⚠️ The notes are written by the community.
If you see an error here, please create a PR with a fix.

Nagivation