Machine Learning A-Z™: AI, Python & R + ChatGPT Bonus [2023]
- Descripción
- Currículum
- Reseñas
Interested in the field of Machine Learning? Then this course is for you!
This course has been designed by a Data Scientist and a Machine Learning expert so that we can share our knowledge and help you learn complex theory, algorithms, and coding libraries in a simple way.
Over 900,000 students world-wide trust this course.
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 can be completed by either doing either the Python tutorials, or R tutorials, or both – Python & R. Pick the programming language that you need for your career.
This course is fun and exciting, and 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
Each section inside each part is independent. So you can either take the whole course from start to finish or you can jump right into any specific section and learn what you need for your career right now.
Moreover, the course is packed with practical exercises that are based on real-life case studies. So not only will you learn the theory, but you will also get lots of 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.
-
1Welcome Challenge!Text lesson
-
2Machine Learning Demo - Get Excited!Video lesson
See the power of Machine Learning in action as we create a Logistic Regression predictive model for a real-world marketing and sales use-case!
-
3Get all the Datasets, Codes and Slides hereText lesson
-
4How to use the ML A-Z folder & Google ColabVideo lesson
-
5Installing R and R Studio (Mac, Linux & Windows)Video lesson
In this video, Hadelin 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.
-
6BONUS: Use ChatGPT to Boost your ML SkillsText lesson
-
7Welcome to Part 1 - Data PreprocessingText lesson
-
8The Machine Learning processVideo lesson
Understand the steps involved in Machine Learning: Data Pre-Processing (Import the data, Clean the data, Split into training & test sets, Feature Scaling), Modelling (Build the model, Train the model, Make predictions), and Evaluation (Calculate performance metrics, Make a verdict).
-
9Splitting the data into a Training and Test setVideo lesson
Understand why it's important to split the data into a training set and a test set, how they differ and what they are used for.
-
10Feature ScalingVideo lesson
Two types of feature scaling: Normalization and Standardization. In the practical tutorials we focus on Standardisation and here we will discuss the intuition behind Normalisation.
-
11Getting Started - Step 1Video lesson
-
12Getting Started - Step 2Video lesson
-
13Importing the LibrariesVideo lesson
-
14Importing the Dataset - Step 1Video lesson
-
15Importing the Dataset - Step 2Video lesson
-
16Importing the Dataset - Step 3Video lesson
-
17For 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.
-
18Taking care of Missing Data - Step 1Video lesson
-
19Taking care of Missing Data - Step 2Video lesson
-
20Encoding Categorical Data - Step 1Video lesson
-
21Encoding Categorical Data - Step 2Video lesson
-
22Encoding Categorical Data - Step 3Video lesson
-
23Splitting the dataset into the Training set and Test set - Step 1Video lesson
-
24Splitting the dataset into the Training set and Test set - Step 2Video lesson
-
25Splitting the dataset into the Training set and Test set - Step 3Video lesson
-
26Feature Scaling - Step 1Video lesson
-
27Feature Scaling - Step 2Video lesson
-
28Feature Scaling - Step 3Video lesson
-
29Feature Scaling - Step 4Video lesson
-
30Getting StartedVideo lesson
-
31Dataset DescriptionVideo lesson
-
32Importing the DatasetVideo lesson
-
33Taking care of Missing DataVideo lesson
-
34Encoding Categorical DataVideo lesson
-
35Splitting the dataset into the Training set and Test set - Step 1Video lesson
-
36Splitting the dataset into the Training set and Test set - Step 2Video lesson
-
37Feature Scaling - Step 1Video lesson
-
38Feature Scaling - Step 2Video lesson
-
39Data Preprocessing TemplateVideo lesson
-
40Data Preprocessing QuizCuestionario
-
42Simple Linear Regression IntuitionVideo lesson
The math behind Simple Linear Regression.
-
43Ordinary Least SquaresVideo lesson
Finding the best fitting line with Ordinary Least Squares method to model the linear relationship between independent variable and dependent variable.
-
44Simple Linear Regression in Python - Step 1aVideo lesson
-
45Simple Linear Regression in Python - Step 1bVideo lesson
-
46Simple Linear Regression in Python - Step 2aVideo lesson
-
47Simple Linear Regression in Python - Step 2bVideo lesson
-
48Simple Linear Regression in Python - Step 3Video lesson
-
49Simple Linear Regression in Python - Step 4aVideo lesson
-
50Simple Linear Regression in Python - Step 4bVideo lesson
-
51Simple Linear Regression in Python - Additional LectureText lesson
-
52Simple Linear Regression in R - Step 1Video lesson
Data preprocessing for Simple Linear Regression in R.
-
53Simple Linear Regression in R - Step 2Video lesson
Fitting Simple Linear Regression (SLR) model to the training set using R function ‘lm’.
-
54Simple Linear Regression in R - Step 3Video lesson
Predicting the test set results with the SLR model using R function ‘predict’ .
-
55Simple Linear Regression in R - Step 4aVideo lesson
Visualizing the training set results and test set results with R package ‘ggplot2’.
-
56Simple Linear Regression in R - Step 4bVideo lesson
-
57Simple Linear Regression QuizCuestionario
-
58Dataset + Business Problem DescriptionVideo lesson
An application of Multiple Linear Regression: profit prediction for Startups.
-
59Multiple Linear Regression IntuitionVideo lesson
The math behind Multiple Linear Regression: modelling the linear relationship between the independent (explanatory) variables and dependent (response) variable.
-
60Assumptions of Linear RegressionVideo lesson
The 5 assumptions associated with a linear regression model: linearity, homoscedasticity, multivariate normality, independence (no autocorrelation), and lack of multicollinearity - plus an additional check for outliers.
-
61Multiple Linear Regression Intuition - Step 3Video lesson
Coding categorical variables in regression with dummy variables.
-
62Multiple Linear Regression Intuition - Step 4Video lesson
Dummy variable trap and how to avoid it.
-
63Understanding the P-ValueVideo lesson
-
64Multiple 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.
-
65Multiple Linear Regression in Python - Step 1aVideo lesson
-
66Multiple Linear Regression in Python - Step 1bVideo lesson
-
67Multiple Linear Regression in Python - Step 2aVideo lesson
-
68Multiple Linear Regression in Python - Step 2bVideo lesson
-
69Multiple Linear Regression in Python - Step 3aVideo lesson
-
70Multiple Linear Regression in Python - Step 3bVideo lesson
-
71Multiple Linear Regression in Python - Step 4aVideo lesson
-
72Multiple Linear Regression in Python - Step 4bVideo lesson
-
73Multiple Linear Regression in Python - Backward EliminationText lesson
-
74Multiple Linear Regression in Python - EXTRA CONTENTText lesson
-
75Multiple Linear Regression in R - Step 1aVideo lesson
-
76Multiple Linear Regression in R - Step 1bVideo lesson
-
77Multiple Linear Regression in R - Step 2aVideo lesson
-
78Multiple Linear Regression in R - Step 2bVideo lesson
-
79Multiple Linear Regression in R - Step 3Video lesson
-
80Multiple Linear Regression in R - Backward Elimination - HOMEWORK !Video lesson
-
81Multiple Linear Regression in R - Backward Elimination - Homework SolutionVideo lesson
-
82Multiple Linear Regression in R - Automatic Backward EliminationText lesson
-
83Multiple Linear Regression QuizCuestionario