Тёмный

Ridge Regression From Scratch In Python [Machine Learning Tutorial] 

Dataquest
Подписаться 59 тыс.
Просмотров 14 тыс.
50% 1

We'll fully implement the ridge regression algorithm from scratch in python. Ridge regression is one of the most popular machine learning algorithms, and learning how it works can help you use it more effectively.
We'll cover what ridge regression is, including the theory and equation. Then we'll implement it in python and compare it to the reference implementation from scikit-learn. We'll end by learning how to calculate the optimal penalty lambda.
It's recommended to watch the video on linear regression before this one ( • Linear Regression Algo... ).
The full code and dataset are available here - github.com/dataquestio/projec... .
Chapters
00:00 - Introduction
00:16 - Ridge regression overview
08:40 - Ridge regression equation
16:53 - Python implementation of the ridge algorithm
26:11 - Finding the optimal penalty
-----------------------------
Join 1M+ Dataquest learners today!
Master data skills and change your life.
Sign up for free: bit.ly/3O8MDef

Опубликовано:

 

11 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 18   
@shank1er
@shank1er 4 месяца назад
This is amazing. Better explanation than my professor.
@yedmitry
@yedmitry Месяц назад
Thanks for the video!
@ling6701
@ling6701 Год назад
Awesome. Subscribed. Could you do a video on LASSO, and another on LogisticRegression?
@grantkim9124
@grantkim9124 Год назад
How does this video not have a million views?
@imildositoe1549
@imildositoe1549 2 месяца назад
I love the way the best alpha value is extracted
@ThinkRight2024
@ThinkRight2024 Год назад
Great explanation of ridge regression. Thank you. Just wondering what if a bunch of x variables has binary values (0,1), would I still have to standardize the data? And also - could you also talk about applying similarity matrix in ridge regression… thank you.
@kylmaz5782
@kylmaz5782 Год назад
Hello. I want to implement the ridge regression method on a small dataset. but I want to get it by solving the model manually (by hand). How can I do it? I will be glad if you can help.
@mikegher879
@mikegher879 Год назад
Hey ! can i habe the codes for def ridge_fit() and def ridge_predict() ? Thanks a lot!
@colinwong3982
@colinwong3982 Год назад
Hi. Thanks for this amazing video. Is there any video about Lasso Regression?
@Dataquestio
@Dataquestio Год назад
Hi Colin - I don't have anything for lasso yet, but might work on it in the future. -Vik
@SuperSumittanwar
@SuperSumittanwar Год назад
Hi vick! Isnt it true that if explainabilty of target variable interms of equation is the goal then multicollinearity is an issue. However, if prediction is the goal then multicollinearity is not an issue.
@Dataquestio
@Dataquestio Год назад
Hi Sumit - in cases of multicollinearity, ridge regression will give you better predictions on out-of-sample data (test data) than linear regression.
@rajeshmanjrekar3614
@rajeshmanjrekar3614 Год назад
great video, thank you for a great explanation of the ridge regression, however at the step of test_X @ B i am getting at error : "matrices are not aligned", i would be extremely greatful if you could send me a solution to this problem , thanks
@Dataquestio
@Dataquestio Год назад
It looks like your matrices don't have the right shapes to be multiplied. The full code is here, so you can check where the issue is in your code - github.com/dataquestio/project-walkthroughs/tree/master/ridge_regression .
@skiprof
@skiprof Год назад
@@Dataquestio This is the best instruction I have found on Ridge Regression, so thank you. However, I am having the same error (ValueError: matrices are not aligned). I looked over the code on github and have not been able to solve this problem. My dataframe has 9 variables (10 columns) x 80 rows. Any other suggestions to get past this error?
@mquant001
@mquant001 2 месяца назад
this youtube channel is pure BS
@rajeshmanjrekar3614
@rajeshmanjrekar3614 Год назад
I am of the opinion that the sentence "B = np.linalg.inv(X.T@ X + penalty)@ X.T @ y" is creating this problem of matrix multiplication , kindly check....
@learningwithfahad
@learningwithfahad Год назад
I had the same problem too being caused by NAs. Check your data for NAs.
Далее
Самое Романтичное Видео ❤️
00:16
24 часа в самом маленьком отеле
21:19
Machine Learning for Everybody - Full Course
3:53:53
Intuitive Explanation of Ridge / Lasso Regression
18:50
Linear Regression From Scratch in Python (Mathematical)
24:38
RNN From Scratch In Python
52:51
Просмотров 21 тыс.
Bayesian Linear Regression : Data Science Concepts
16:28
Predict NBA Games With Python And Machine Learning
58:33