Mastering Support Vector Machines with Python and Scikit-Learn

preview_player
Показать описание
Are you ready to delve into the world of machine learning algorithms and enhance your understanding of SVM? In this comprehensive tutorial, we'll guide you through the ins and outs of Support Vector Machines, one of the most powerful and versatile tools in the machine learning toolbox.

Interested in discussing a Data or AI project? Feel free to reach out via email or simply complete the contact form on my website.

🍿 WATCH NEXT

MY OTHER SOCIALS:

WHO AM I?
As a full-time data analyst/scientist at a fintech company specializing in combating fraud within underwriting and risk, I've transitioned from my background in Electrical Engineering to pursue my true passion: data. In this dynamic field, I've discovered a profound interest in leveraging data analytics to address complex challenges in the financial sector.

This YouTube channel serves as both a platform for sharing knowledge and a personal journey of continuous learning. With a commitment to growth, I aim to expand my skill set by publishing 2 to 3 new videos each week, delving into various aspects of data analytics/science and Artificial Intelligence. Join me on this exciting journey as we explore the endless possibilities of data together.

*This is an affiliate program. I may receive a small portion of the final sale at no extra cost to you.
Рекомендации по теме
Комментарии
Автор

Hey guys I hope you enjoyed the video! If you did please subscribe to the channel!


*Both Datacamp and Stratascratch are affiliate links.

RyanAndMattDataScience
Автор

mean1 = 55
std_dev1 = 10
num_samples = 500

column1_numbers = np.random.normal(mean1, std_dev1, num_samples)
column1_numbers = np.clip(column1_numbers, 30, 120)
column1_numbers =

mean2 = 18
std_dev2 = 3

column2_numbers = np.random.normal(mean2, std_dev2, num_samples)
column2_numbers = np.clip(column2_numbers, 12, 26)
column2_numbers =

column3_numbers = np.random.randint(2, size=num_samples)
> mean1] =1

data = {"Miles_Per_week": column1_numbers,
"Farthest_run": column2_numbers,
"Qualified_Boston_Marathon": column3_numbers}

df = pd.DataFrame(data)

pmnt
Автор

Hello Ryan. Thanks for the video. I can’t seem to find where you put down the code for the “data generation” and matplotlib. Could you help with that. Thanks

pymav
Автор

Thanks for the video, could you by any chance cover glms or bayesian linear regression?

misterx
Автор

Hey wonder if you have the code for the data so we can follow along?

henry-oi