Linear Regression in 2 minutes

  Рет қаралды 315,814

Visually Explained

Visually Explained

Күн бұрын

Linear Regression in 2 minutes.
---------------
Credit:
🐍 Manim and Python : github.com/3b1...
🐵 Blender3D: www.blender.org/
🗒️ Emacs: www.gnu.org/so...
Music/Sound: www.bensound.com
This video would not have been possible without the help of Gökçe Dayanıklı.

Пікірлер: 72
@ionut.666
@ionut.666 2 жыл бұрын
This is a very good exercise for people who already know the topic, but want to learn new ways of explaining it to others in a very short time.
@Diachron
@Diachron 9 сағат бұрын
2 minutes makes for a good reminder if you are already familiar with the topic, but woefully short for a proper introduction.
@naveedanwer8262
@naveedanwer8262 4 ай бұрын
Just learn how to speak slwoly and you will have more views
@noname-anonymous-v7c
@noname-anonymous-v7c 8 ай бұрын
1:20 the formula for alpha is wrong. dem = sum(x_i^2) - n*sum(x_i)^2, nom = n*sum(x_i * y_i) - sum(x_i)*sum(y_9)
@chahinezmazouzi2526
@chahinezmazouzi2526 2 жыл бұрын
Great content! it's so helpful to see mathematical concept visually explained! Thank you for making it so easy and available.
@mamidalamani9636
@mamidalamani9636 2 ай бұрын
00:01 Linear regression predicts the value of a dependent variable based on an independent variable. 00:20 Linear regression helps predict new values based on existing data 00:38 Linear regression is useful for prediction problems. 00:55 Quantifying the fit of a line to data points 01:10 Solving a prediction machine learning problem using linear regression from scratch. 01:29 Linear regression is simple and extensible 01:49 Linear regression allows interpretation of coefficients 02:08 Linear regression involves finding the relationship between two variables.
@TheKrasTel
@TheKrasTel 2 жыл бұрын
Your videos are absolutely stunning, only matter of time when the serious views will come in. Please keep doing these! :)
@VisuallyExplained
@VisuallyExplained 2 жыл бұрын
Thanks for the great feedback. stay tuned for more!
@huntergarrigus368
@huntergarrigus368 Жыл бұрын
Can someone please explain how the gradient is applied to the summation over the square error term to produce the result shown at the bottom at 1:13
@eudaimonia2120
@eudaimonia2120 5 ай бұрын
What happened after 1:10, what was that gradient thing?
@RohitKumar-dg2qt
@RohitKumar-dg2qt 2 жыл бұрын
Most awesome videos that explains things how they are suppose to be. Love it
@nancylopez5476
@nancylopez5476 2 жыл бұрын
Wow, you saved my life ! This is the most clear explanation about this topic. Loved it ! Love you !
@menphishack22
@menphishack22 Ай бұрын
Cap
@aerbon
@aerbon Жыл бұрын
What is 'n' in the formula for beta at 1:18? I assume it is the number of points but I can't get my code to work so I'd like to be sure. Thanks Update: after some testing it is clear that the issue is either with the formula for alpha or my implementation of it. Everything works when beta is 0, but as i change my sample to have a value of beta further and further from 0 alpha gets offset more and more for some reason. i am about to go through my third re-write of the thing and i don't know what to change. if anyone wants to try and figure out what is wrong then here's some results: Sample: alpha = 0.5, beta = 0 Result: alpha = ~0.5 Sample: alpha = 0.5, beta = 50 Result: alpha = ~0.25 Sample: alpha = 0.5, beta = 100 Result: alpha = ~0 yes the error does grow linearly with beta. Update 2: re-wrote it for the third time. still wrong in the exact same way. send help.
@noname-anonymous-v7c
@noname-anonymous-v7c 8 ай бұрын
The formula is wrong. the formula for alpha is wrong. dem = sum(x_i^2) - n*sum(x_i)^2, nom = n*sum(x_i * y_i) - sum(x_i)*sum(y_9)
@tanishqawasthi5664
@tanishqawasthi5664 2 жыл бұрын
This Channel is Really Creating some masterpieces in Visually Explaining Some Really deep Concepts in Optimization, A.I & Machine Learning....The Art with which you Visually Explain Things is Truly Phenomenal, I've Been a Huge Fan of this Channel since DAY 1 ,Please Never Stop Creating this type of content ….. !!! As an Optimization Student ,Is There Any Way I can connect with you and help this channel create more good Content..??
@VisuallyExplained
@VisuallyExplained 2 жыл бұрын
Hey there, thanks a lot for watching! I am glad you enjoyed my channel. Feel free to DM me on twitter.
@IncredibleSkillz-df4xk
@IncredibleSkillz-df4xk 10 ай бұрын
Thank you SOOO much for this video.. My intergated 1 teacher was absent today and I didn't understand the topic. I then stumbled upon this video and it helped alot. THANKS!
@Fakipo
@Fakipo 8 ай бұрын
How did we get those equations to solve for alpha and beta?
@will201084
@will201084 10 ай бұрын
I went from a 1 minute explanation video to a 2 minute one :/
@Bedivine777angelprayer
@Bedivine777angelprayer Жыл бұрын
wow very nice can you explain pandas and dataframe with all methods I am Ai student
@lammaituyen15
@lammaituyen15 Жыл бұрын
Nice ! Amazing enough for a beginner like me!! @@
@RadicalRed0
@RadicalRed0 11 ай бұрын
This was very helpful. Thank You
@reinhardsilaen9594
@reinhardsilaen9594 2 жыл бұрын
Please do Random Forest Regression and Knn Regression.
@santhoshvavilala5397
@santhoshvavilala5397 5 ай бұрын
Very well explained.. it helps to understand how the function does the job.. ignore negative comments..😅
@stefanrusu9895
@stefanrusu9895 2 жыл бұрын
Awesome video! I love how you explain every concept visually and easy to understand. Any chance on making a video on logistic regression as well?
@KyloRen-o5g
@KyloRen-o5g 3 ай бұрын
The formula is wrong.. he conveniently moved on...Read below many have commented on this....
@dy5topian
@dy5topian 9 ай бұрын
am i stupid or maybe with the double equations your gave you can't find values of alpha and beta because one equation is just multple of the other
@norivall7111
@norivall7111 9 ай бұрын
I think I have a problem with the formula because when i try it to an example, it completely wrong.
@sophiafunworldatthepark6740
@sophiafunworldatthepark6740 8 ай бұрын
simple and easy to understand.
@Ken08Odida
@Ken08Odida 3 ай бұрын
Thank you. Perfectly simplified in 2 minutes. Now I can build on this basic understanding
@nextexpertadvisors
@nextexpertadvisors Ай бұрын
I used linear regression in my forex bot!
@shubhampathak991
@shubhampathak991 6 ай бұрын
please make your speech little slower so you can be heard without giving stress
@amirabenkaidali2941
@amirabenkaidali2941 Жыл бұрын
Thank you sm for this simple explanation it helps a lotttt
@EmiliaKaida
@EmiliaKaida 2 жыл бұрын
Are you using manim for these presentations or something else ?
@VisuallyExplained
@VisuallyExplained 2 жыл бұрын
I am using a combination of manim, blender, and after effects.
@EmiliaKaida
@EmiliaKaida 2 жыл бұрын
@@VisuallyExplained Thanks
@PritishMishra
@PritishMishra 2 жыл бұрын
Amazing explanation and animations!
@ranjanpal7217
@ranjanpal7217 10 ай бұрын
Amazing explnanation
@duaaali3790
@duaaali3790 Ай бұрын
Thank you so much for this amazing effort
@janpoonthong
@janpoonthong Жыл бұрын
Good video
@alimortadahoumani1134
@alimortadahoumani1134 10 ай бұрын
great video only for those who already know it
@samuraipiyush
@samuraipiyush 7 ай бұрын
beautiful
@MaríaFernandaRuiz-m4f
@MaríaFernandaRuiz-m4f Жыл бұрын
Wooow great video!
@T44enterprismalFORTE
@T44enterprismalFORTE 9 күн бұрын
𝕃𝕠𝕤𝕤 𝕠𝕗 𝕒 𝕞𝕒𝕡
@primate745
@primate745 5 ай бұрын
This is very poorly explained.
@learnwitharbia3477
@learnwitharbia3477 Жыл бұрын
Just Amazing!
@tohigherhighs
@tohigherhighs 2 ай бұрын
What an actual boss of a video
@idgaf0099
@idgaf0099 11 ай бұрын
This is not a good video who wants to learn all of this stuff from scratch!
@AbdullaHernandez
@AbdullaHernandez 9 ай бұрын
It's 2 minutes long, I'm sorry but what did you expect?
@Justinjaro
@Justinjaro 7 ай бұрын
I learned what I needed form this. Did you think you're gonna learn everything from scratch from a 2 minute vid?
@papang1749
@papang1749 7 ай бұрын
I do! I needed this video!!!
@vishalvarakhedkar8816
@vishalvarakhedkar8816 5 ай бұрын
I’d suggest- Statquest Josh Starmer. For anyone zero-hero
@idgaf0099
@idgaf0099 5 ай бұрын
@@vishalvarakhedkar8816 I love his ukulele videos, lol
@SaharLive-j9t
@SaharLive-j9t 6 ай бұрын
Thank you sir this one saves me
@yashtibrewal4259
@yashtibrewal4259 2 жыл бұрын
Perfect video, thanks
@VisuallyExplained
@VisuallyExplained 2 жыл бұрын
You're welcome!
@sohrabhashed1488
@sohrabhashed1488 7 ай бұрын
Simple and nice thanks
@developer_novice4237
@developer_novice4237 Жыл бұрын
thank you for the python code!
@madaweehathloul2045
@madaweehathloul2045 Жыл бұрын
ابوس راسك ياشيخ
@larissacury7714
@larissacury7714 4 ай бұрын
That's great!
@ahlamouldkhesal5562
@ahlamouldkhesal5562 9 ай бұрын
that was life saving TSM!!!
@aimiuwugodstand4210
@aimiuwugodstand4210 Жыл бұрын
Mehn, great content
@AuntirRanna
@AuntirRanna 5 ай бұрын
loved it
@vinayakmarv6873
@vinayakmarv6873 2 жыл бұрын
This is the best way for video lectures
@omartakruri
@omartakruri Жыл бұрын
HOLY $H!T
@calculate.
@calculate. 11 ай бұрын
It's not lazy it's time wasting, why would anyone waste their time doing something that a program can give answers to we just need to understand it.
@kunalsoni7681
@kunalsoni7681 11 ай бұрын
wow 😊✨
@christinakujak5275
@christinakujak5275 Жыл бұрын
Best explanation of linear regression that I've heard.
@bheemeshd3101
@bheemeshd3101 2 жыл бұрын
this is masterpiece of information you deserve more views
@VisuallyExplained
@VisuallyExplained 2 жыл бұрын
Thanks for the amazing comment!
@user-jd1cy9gp3q
@user-jd1cy9gp3q 2 жыл бұрын
Learn Statistical Regression in 40 mins! My best video ever. Legit.
40:25
Which One Is The Best - From Small To Giant #katebrush #shorts
00:17
Help Me Celebrate! 😍🙏
00:35
Alan Chikin Chow
Рет қаралды 56 МЛН
The selfish The Joker was taught a lesson by Officer Rabbit. #funny #supersiblings
00:12
Video 1: Introduction to Simple Linear Regression
13:29
dataminingincae
Рет қаралды 1,7 МЛН
Linear Regression From Scratch in Python (Mathematical)
24:38
NeuralNine
Рет қаралды 174 М.
Linear Regression
10:56
Steve Brunton
Рет қаралды 49 М.
Statistics 101: Linear Regression, The Very Basics 📈
22:56
Brandon Foltz
Рет қаралды 1,9 МЛН
Linear Regression, Clearly Explained!!!
27:27
StatQuest with Josh Starmer
Рет қаралды 258 М.
Regression: Crash Course Statistics #32
12:40
CrashCourse
Рет қаралды 706 М.
How To... Perform Simple Linear Regression by Hand
10:55
Eugene O'Loughlin
Рет қаралды 1,7 МЛН
Simple and Multiple Linear Regression
13:38
DATAtab
Рет қаралды 153 М.
Convexity and The Principle of Duality
10:04
Visually Explained
Рет қаралды 76 М.
Где купить колонку Алиса в ОАЭ или США ?
0:17
Electronics_latvia
Рет қаралды 3,6 МЛН
Проверил, как вам?
1:01
Коннор
Рет қаралды 1,2 МЛН
iPad Domino has been in use for a long time. Let's see the effect
0:12
3D Fantasy Life
Рет қаралды 396 М.
Evolution of the Samsung Galaxy
0:50
ios_aesthetics
Рет қаралды 6 МЛН
Wireless switch part 177
0:58
DailyTech
Рет қаралды 2,4 МЛН
Телефон - самая грязная ваша вещь
0:24
Up Your Brains
Рет қаралды 1,7 МЛН