Data Science: Supervised Machine Learning in Python
Full Guide to Implementing Classic Machine Learning Algorithms in Python and with Scikit-Learn
What you’ll learn
- Understand and implement K-Nearest Neighbors in Python
- Understand the limitations of KNN
- User KNN to solve several binary and multiclass classification problems
- Understand and implement Naive Bayes and General Bayes Classifiers in Python
- Understand the limitations of Bayes Classifiers
- Understand and implement a Decision Tree in Python
- Understand and implement the Perceptron in Python
- Understand the limitations of the Perceptron
- Understand hyperparameters and how to apply cross-validation
- Understand the concepts of feature extraction and feature selection
- Understand the pros and cons between classic machine learning methods and deep learning
- Use Sci-Kit Learn
- Implement a machine learning web service
Requirements
- Python, Numpy, and Pandas experience
- Probability and statistics (Gaussian distribution)
- Strong ability to write algorithms
Description
In recent years, we’ve seen a resurgence in AI, or artificial intelligence, and machine learning.
Machine learning has led to some amazing results, like being able to analyze medical images and predict diseases on-par with human experts.
Google’s AlphaGo program was able to beat a world champion in the strategy game go using deep reinforcement learning.
Machine learning is even being used to program self driving cars, which is going to change the automotive industry forever. Imagine a world with drastically reduced car accidents, simply by removing the element of human error. Supervised Machine
Google famously announced that they are now “machine learning first”, meaning that machine learning is going to get a lot more attention now, and this is what’s going to drive innovation in the coming years. It’s embedded into all sorts of different products.
Machine learning is used in many industries, like finance, online advertising, medicine, and robotics. Supervised Machine
It is a widely applicable tool that will benefit you no matter what industry you’re in, and it will also open up a ton of career opportunities once you get good.
Machine learning also raises some philosophical questions. Are we building a machine that can think? What does it mean to be conscious? Will computers one day take over the world? Supervised Machine Supervised Machine
In this course, we are first going to discuss the K-Nearest Neighbor algorithm. It’s extremely simple and intuitive, and it’s a great first classification algorithm to learn. After we discuss the concepts and implement it in code, we’ll look at some ways in which KNN can fail.
It’s important to know both the advantages and disadvantages of each algorithm we look at. Supervised Machine
Next we’ll look at the Naive Bayes Classifier and the General Bayes Classifier. This is a very interesting algorithm to look at because it is grounded in probability.
We’ll see how we can transform the Bayes Classifier into a linear and quadratic classifier to speed up our calculations.
Who this course is for:
- Students and professionals who want to apply machine learning techniques to their datasets
- Students and professionals who want to apply machine learning techniques to real world problems
- Anyone who wants to learn classic data science and machine learning algorithms
- Anyone looking for an introduction to artificial intelligence (AI)