Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.
Fun, engaging games to boost memory, math fluency, typing speed, and English skills—perfect for learners of all ages.
Supervised Learning involves training models on labeled datasets where input features correspond to known outputs. Linear Regression is a fundamental supervised learning algorithm utilized to model relationships between dependent and independent variables. This chapter covers the implementation of linear regression in Python, along with the evaluation of model performance using metrics like Mean Squared Error and R² Score.
Enroll to start learning
You’ve not yet enrolled in this course. Please enroll for free to listen to audio lessons, classroom podcasts and take mock test.
References
Untitled document (38).pdfClass Notes
Memorization
What we have learnt
Final Test
Revision Tests
Term: Supervised Learning
Definition: A type of machine learning where a model is trained using labeled data, with input-output pairs.
Term: Linear Regression
Definition: A supervised learning algorithm that models the relationship between a dependent variable and one or more independent variables using a linear equation.
Term: Mean Squared Error (MSE)
Definition: A metric used to evaluate regression models, computed as the average of the squares of the errors between predicted and actual values.
Term: R² Score
Definition: A statistical measure that represents the proportion of the variance for a dependent variable that's explained by independent variables in a regression model.