Machine Learning A-Z™: Hands-On Python & R In Data Science
- Description
- Curriculum
- FAQ
- Reviews
Interested in the field of Machine Learning? Then this course is for you!
This course has been designed by two professional Data Scientists so that we can share our knowledge and help you learn complex theory, algorithms, and coding libraries in a simple way.
We will walk you step-by-step into the World of Machine Learning. With every tutorial, you will develop new skills and improve your understanding of this challenging yet lucrative sub-field of Data Science.
This course is fun and exciting, but at the same time, we dive deep into Machine Learning. It is structured the following way:
-
Part 1 – Data Preprocessing
-
Part 2 – Regression: Simple Linear Regression, Multiple Linear Regression, Polynomial Regression, SVR, Decision Tree Regression, Random Forest Regression
-
Part 3 – Classification: Logistic Regression, K-NN, SVM, Kernel SVM, Naive Bayes, Decision Tree Classification, Random Forest Classification
-
Part 4 – Clustering: K-Means, Hierarchical Clustering
-
Part 5 – Association Rule Learning: Apriori, Eclat
-
Part 6 – Reinforcement Learning: Upper Confidence Bound, Thompson Sampling
-
Part 7 – Natural Language Processing: Bag-of-words model and algorithms for NLP
-
Part 8 – Deep Learning: Artificial Neural Networks, Convolutional Neural Networks
-
Part 9 – Dimensionality Reduction: PCA, LDA, Kernel PCA
-
Part 10 – Model Selection & Boosting: k-fold Cross Validation, Parameter Tuning, Grid Search, XGBoost
Moreover, the course is packed with practical exercises that are based on real-life examples. So not only will you learn the theory, but you will also get some hands-on practice building your own models.
And as a bonus, this course includes both Python and R code templates which you can download and use on your own projects.
Important updates (June 2020):
-
CODES ALL UP TO DATE
-
DEEP LEARNING CODED IN TENSORFLOW 2.0
-
TOP GRADIENT BOOSTING MODELS INCLUDING XGBOOST AND EVEN CATBOOST!
-
1Applications of Machine LearningVideo lesson
Real-life examples of Machine Learning applications.
-
2Meet your instructorsText lesson
Greetings from instructors, and an SDS podcast about some machine learning concepts & an overview of popular machine learning algorithms.
-
3EXTRA CONTENT #1: Learning PathsText lesson
-
4EXTRA CONTENT #2: ML vs. DL vs. AI - What’s the Difference?Text lesson
-
5EXTRA CONTENT #3: Regression TypesText lesson
-
6Why Machine Learning is the FutureVideo lesson
The course introduction, the instructors, and the importance of Machine Learning.
-
7Important notes, tips & tricks for this courseText lesson
Important notes, tips & tricks for Machine Learning A-Z course.
-
8This PDF resource will help you a lot!Text lesson
An important PDF. It contains the whole structure of Machine Learning A-Z course and the answers to important questions.
-
9GET ALL THE CODES AND DATASETS HERE!Text lesson
-
10Presentation of the ML A-Z folder, Colaboratory, Jupyter Notebook and SpyderVideo lesson
-
11Installing R and R Studio (Mac, Linux & Windows)Video lesson
In this video, Kirill explains in details how to install R programming language and R studio on your computer so you can swiftly go through the rest of the course.
-
12Some Additional ResourcesText lesson
-
13FAQBot!Text lesson
-
14Your Shortcut To Becoming A Better Data Scientist!Text lesson
-
16Make sure you have your Machine Learning A-Z folder readyText lesson
-
17Getting StartedVideo lesson
-
18Importing the LibrariesVideo lesson
-
19Importing the DatasetVideo lesson
-
20For Python learners, summary of Object-oriented programming: classes & objectsText lesson
A short written summary of what needs to know in Object-oriented programming, e.g. class, object, and method.
-
21Taking care of Missing DataVideo lesson
-
22Encoding Categorical DataVideo lesson
-
23Splitting the dataset into the Training set and Test setVideo lesson
-
24Feature ScalingVideo lesson
-
25WelcomeText lesson
-
26Getting StartedVideo lesson
-
27Make sure you have your dataset readyText lesson
-
28Dataset DescriptionVideo lesson
-
29Importing the DatasetVideo lesson
-
30Taking care of Missing DataVideo lesson
-
31Encoding Categorical DataVideo lesson
-
32Splitting the dataset into the Training set and Test setVideo lesson
-
33Feature ScalingVideo lesson
-
34Data Preprocessing TemplateVideo lesson
-
36Simple Linear Regression Intuition - Step 1Video lesson
The math behind Simple Linear Regression.
-
37Simple Linear Regression Intuition - Step 2Video lesson
Finding the best fitting line with Ordinary Least Squares method to model the linear relationship between independent variable and dependent variable.
-
38Make sure you have your Machine Learning A-Z folder readyText lesson
-
39Simple Linear Regression in Python - Step 1Video lesson
-
40Simple Linear Regression in Python - Step 2Video lesson
-
41Simple Linear Regression in Python - Step 3Video lesson
-
42Simple Linear Regression in Python - Step 4Video lesson
-
43Simple Linear Regression in Python - Additional LectureText lesson
-
44Simple Linear Regression in R - Step 1Video lesson
Data preprocessing for Simple Linear Regression in R.
-
45Simple Linear Regression in R - Step 2Video lesson
Fitting Simple Linear Regression (SLR) model to the training set using R function ‘lm’.
-
46Simple Linear Regression in R - Step 3Video lesson
Predicting the test set results with the SLR model using R function ‘predict’ .
-
47Simple Linear Regression in R - Step 4Video lesson
Visualizing the training set results and test set results with R package ‘ggplot2’.
-
48Simple Linear RegressionQuiz
-
49Dataset + Business Problem DescriptionVideo lesson
An application of Multiple Linear Regression: profit prediction for Startups.
-
50Multiple Linear Regression Intuition - Step 1Video lesson
The math behind Multiple Linear Regression: modelling the linear relationship between the independent (explanatory) variables and dependent (response) variable.
-
51Multiple Linear Regression Intuition - Step 2Video lesson
The 5 assumptions associated with a linear regression model: linearity, homoscedasticity, multivariate normality, independence of error, and lack of multicollinearity.
-
52Multiple Linear Regression Intuition - Step 3Video lesson
Coding categorical variables in regression with dummy variables.
-
53Multiple Linear Regression Intuition - Step 4Video lesson
Dummy variable trap and how to avoid it.
-
54Understanding the P-ValueVideo lesson
-
55Multiple Linear Regression Intuition - Step 5Video lesson
An intuitive guide to 5 Stepwise Regression methods of building multiple linear regression models: All-in, Backward Elimination, Forward Selection, Bidirectional Elimination, and Score Comparison.
-
56Make sure you have your Machine Learning A-Z folder readyText lesson
-
57Multiple Linear Regression in Python - Step 1Video lesson
-
58Multiple Linear Regression in Python - Step 2Video lesson
-
59Multiple Linear Regression in Python - Step 3Video lesson
-
60Multiple Linear Regression in Python - Step 4Video lesson
-
61Multiple Linear Regression in Python - Backward EliminationText lesson
-
62Multiple Linear Regression in Python - EXTRA CONTENTText lesson
-
63Multiple Linear Regression in R - Step 1Video lesson
-
64Multiple Linear Regression in R - Step 2Video lesson
-
65Multiple Linear Regression in R - Step 3Video lesson
-
66Multiple Linear Regression in R - Backward Elimination - HOMEWORK !Video lesson
-
67Multiple Linear Regression in R - Backward Elimination - Homework SolutionVideo lesson
-
68Multiple Linear Regression in R - Automatic Backward EliminationText lesson
-
69Multiple Linear RegressionQuiz
-
70Polynomial Regression IntuitionVideo lesson
The math behind Polynomial Regression: modelling the non-linear relationship between independent variables and dependent variable.
-
71Make sure you have your Machine Learning A-Z folder readyText lesson
-
72Polynomial Regression in Python - Step 1Video lesson
-
73Polynomial Regression in Python - Step 2Video lesson
-
74Polynomial Regression in Python - Step 3Video lesson
-
75Polynomial Regression in Python - Step 4Video lesson
-
76Polynomial Regression in R - Step 1Video lesson
Data preprocessing for Polynomial Regression in R.
-
77Polynomial Regression in R - Step 2Video lesson
Fitting Polynomial Regression model and Linear Regression model to the dataset in R.
-
78Polynomial Regression in R - Step 3Video lesson
Visualizing Linear Repression results and Polynomial Regression results and comparing the models' performance.
-
79Polynomial Regression in R - Step 4Video lesson
Predicting new results with Linear Regression model and Polynomial Regression model.
-
80R Regression TemplateVideo lesson
Template for regression modelling in R.
-
81SVR Intuition (Updated!)Video lesson
Understanding the intuition behind Support Vector Regression (SVR) for the linear case. Concepts like epsilon-insensitive tube and slack variables are explained in this tutorial.
-
82Heads-up on non-linear SVRVideo lesson
Some info about upcoming tutorials on Support Vector Machines (SVM), Kernel functions and non-Linear Support Vector Regression (SVR)
-
83Make sure you have your Machine Learning A-Z folder readyText lesson
-
84SVR in Python - Step 1Video lesson
-
85SVR in Python - Step 2Video lesson
-
86SVR in Python - Step 3Video lesson
-
87SVR in Python - Step 4Video lesson
-
88SVR in Python - Step 5Video lesson
-
89SVR in RVideo lesson
Salary prediction with Support Vector Regression using R package ‘e1071’: data preprocessing, fitting, predicting, and visualizing the SVR results.

External Links May Contain Affiliate Links read more