#mathinmachinelearning #meansquarederror #linearregression
Telegram for more insights(ML papers, PDF and Books):
https://t.me/Artificial_intelligence_AI
Free Code uploaded to GitHub repositry link:
https://github.com/eduai-repo/ML-Demo
Link to Other videos:
What is Linear Regression and When to Use it? :-
https://www.youtube.com/watch?v=p3M_i...
Writing First ML algorithm:-
• Building the first Machine Learning model ...
How to get started in AI:-
https://www.youtube.com/watch?v=p8Ioh...
Types of Machine Learning:-
https://www.youtube.com/watch?v=0ucFy...
All in one Place:
https://linktr.ee/artificial.intellig...
Telegram for more insights(ML papers, PDF's and Books):
https://t.me/Artificial_intelligence_AI
Linear Regression algorithm draws the best fitting line over the data
so equation to draw a line is:
y = mx + c;
in Machine learning same can be expressed as follows:
h(X) = Ɵ0 + Ɵ1 X
Ɵ0 is Y-intercept or the bias
Ɵ1 is the slope or angle
Let's say,
Ɵ0 = 1
Ɵ1 = 0.5
then equation would look like,
h(X) = 1 + 0.5 X
Let's watch the video to understand further details!