Naive Bayes Classifier: A Practical Tutorial with Scikit-Learn

preview_player
Показать описание
Welcome to our beginner-friendly tutorial on Naive Bayes classification using Scikit-Learn in Python! In this comprehensive guide, we'll walk you through the fundamentals of Naive Bayes, a popular machine learning algorithm, and show you how to implement it with the powerful Scikit-Learn library.

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
Автор

Love your machine learning vids, keep it up!

sushibooshi
Автор

good job my friend! Thank you. It will be very useful if we could use the same dataset you use. I can't find the dataset you work on.

akistsili
Автор

import pandas as pd
import numpy as np

num_items = 41
data = {
'City Population': np.random.randint(10000, num_items),
'Continent': np.random.choice(['Asia', 'Europe', 'North America', 'South America'], num_items),
'Venue Capacity': np.random.randint(500, 20000, num_items),
'Day Of Week': np.random.choice(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], num_items),
'Multiple Concerts': np.random.randint(0, 2, num_items),
'Sold Out': np.random.randint(0, 2, num_items)
}

pd.DataFrame(data)

EhsanLash
Автор

Hello! Love your videos :)

I can't find the source file 'Pearl_Jam_Tour2.csv' to walkthrough with you, can you add it to the description or in a comment?

mohamednasser