fbpx
4.55 de 5
4.55
167988 reseñas sobre Udemy

Machine Learning A-Z™: AI, Python & R + ChatGPT Bonus [2023]

Learn to create Machine Learning Algorithms in Python and R from two Data Science experts. Code templates included.
Instructor:
Kirill Eremenko
932.382 estudiantes matriculados
English [Auto] Más
Master Machine Learning on Python & R
Have a great intuition of many Machine Learning models
Make accurate predictions
Make powerful analysis
Make robust Machine Learning models
Create strong added value to your business
Use Machine Learning for personal purpose
Handle specific topics like Reinforcement Learning, NLP and Deep Learning
Handle advanced techniques like Dimensionality Reduction
Know which Machine Learning model to choose for each type of problem
Build an army of powerful Machine Learning models and know how to combine them to solve any problem

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.

Welcome to the course! Here we will help you get started in the best conditions.

1
Welcome Challenge!
2
Machine Learning Demo - Get Excited!

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!

3
Get all the Datasets, Codes and Slides here
4
How to use the ML A-Z folder & Google Colab
5
Installing R and R Studio (Mac, Linux & Windows)

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.

6
BONUS: Use ChatGPT to Boost your ML Skills

-------------------- Part 1: Data Preprocessing --------------------

1
Welcome to Part 1 - Data Preprocessing
2
The Machine Learning process

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).

3
Splitting the data into a Training and Test set

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.

4
Feature Scaling

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.

Data Preprocessing in Python

1
Getting Started - Step 1
2
Getting Started - Step 2
3
Importing the Libraries
4
Importing the Dataset - Step 1
5
Importing the Dataset - Step 2
6
Importing the Dataset - Step 3
7
For Python learners, summary of Object-oriented programming: classes & objects

A short written summary of what needs to know in Object-oriented programming, e.g. class, object, and method.

8
Taking care of Missing Data - Step 1
9
Taking care of Missing Data - Step 2
10
Encoding Categorical Data - Step 1
11
Encoding Categorical Data - Step 2
12
Encoding Categorical Data - Step 3
13
Splitting the dataset into the Training set and Test set - Step 1
14
Splitting the dataset into the Training set and Test set - Step 2
15
Splitting the dataset into the Training set and Test set - Step 3
16
Feature Scaling - Step 1
17
Feature Scaling - Step 2
18
Feature Scaling - Step 3
19
Feature Scaling - Step 4

Data Preprocessing in R

1
Getting Started
2
Dataset Description
3
Importing the Dataset
4
Taking care of Missing Data
5
Encoding Categorical Data
6
Splitting the dataset into the Training set and Test set - Step 1
7
Splitting the dataset into the Training set and Test set - Step 2
8
Feature Scaling - Step 1
9
Feature Scaling - Step 2
10
Data Preprocessing Template
11
Data Preprocessing Quiz

-------------------- Part 2: Regression --------------------

1
Welcome to Part 2 - Regression

What is regression? 6 types of regression models are taught in this course.

Simple Linear Regression

1
Simple Linear Regression Intuition

The math behind Simple Linear Regression.

2
Ordinary Least Squares

Finding the best fitting line with Ordinary Least Squares method to model the linear relationship between independent variable and dependent variable.

3
Simple Linear Regression in Python - Step 1a
4
Simple Linear Regression in Python - Step 1b
5
Simple Linear Regression in Python - Step 2a
6
Simple Linear Regression in Python - Step 2b
7
Simple Linear Regression in Python - Step 3
8
Simple Linear Regression in Python - Step 4a
9
Simple Linear Regression in Python - Step 4b
10
Simple Linear Regression in Python - Additional Lecture
11
Simple Linear Regression in R - Step 1

Data preprocessing for Simple Linear Regression in R.

12
Simple Linear Regression in R - Step 2

Fitting Simple Linear Regression (SLR) model to the training set using R function ‘lm’.

13
Simple Linear Regression in R - Step 3

Predicting the test set results with the SLR model using R function ‘predict’ .

14
Simple Linear Regression in R - Step 4a

Visualizing the training set results and test set results with R package ‘ggplot2’.

15
Simple Linear Regression in R - Step 4b
16
Simple Linear Regression Quiz

Multiple Linear Regression

1
Dataset + Business Problem Description

An application of Multiple Linear Regression: profit prediction for Startups.

2
Multiple Linear Regression Intuition

The math behind Multiple Linear Regression: modelling the linear relationship between the independent (explanatory) variables and dependent (response) variable.

3
Assumptions of Linear Regression

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.

4
Multiple Linear Regression Intuition - Step 3

Coding categorical variables in regression with dummy variables.

5
Multiple Linear Regression Intuition - Step 4

Dummy variable trap and how to avoid it.

6
Understanding the P-Value
7
Multiple Linear Regression Intuition - Step 5

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.

8
Multiple Linear Regression in Python - Step 1a
9
Multiple Linear Regression in Python - Step 1b
10
Multiple Linear Regression in Python - Step 2a
11
Multiple Linear Regression in Python - Step 2b
12
Multiple Linear Regression in Python - Step 3a
13
Multiple Linear Regression in Python - Step 3b
14
Multiple Linear Regression in Python - Step 4a
15
Multiple Linear Regression in Python - Step 4b
16
Multiple Linear Regression in Python - Backward Elimination
17
Multiple Linear Regression in Python - EXTRA CONTENT
18
Multiple Linear Regression in R - Step 1a
19
Multiple Linear Regression in R - Step 1b
20
Multiple Linear Regression in R - Step 2a
21
Multiple Linear Regression in R - Step 2b
22
Multiple Linear Regression in R - Step 3
23
Multiple Linear Regression in R - Backward Elimination - HOMEWORK !
24
Multiple Linear Regression in R - Backward Elimination - Homework Solution
25
Multiple Linear Regression in R - Automatic Backward Elimination
26
Multiple Linear Regression Quiz

Polynomial Regression

1
Polynomial Regression Intuition

The math behind Polynomial Regression: modelling the non-linear relationship between independent variables and dependent variable.

2
Polynomial Regression in Python - Step 1a
3
Polynomial Regression in Python - Step 1b
4
Polynomial Regression in Python - Step 2a
5
Polynomial Regression in Python - Step 2b
6
Polynomial Regression in Python - Step 3a
7
Polynomial Regression in Python - Step 3b
8
Polynomial Regression in Python - Step 4a
9
Polynomial Regression in Python - Step 4b
4.6
4.6 de 5
Calificaciones 167988

Calificación Detallada

5 estrellas
91645
4 estrellas
56941
3 estrellas
15188
2 estrellas
2619
1 estrellas
1595
bd3565246980eaf49d659588142323ef
Garantía de devolución de dinero de 30 días

Incluye

42 horas de video a pedido
39 artículos
Acceso completo de por vida
Acceso en el móvil y en la televisión
Certificado de finalización
Machine Learning A-Z™: AI, Python & R + ChatGPT Bonus [2023]
Precio:
$119.99 $20
bubble_bg_popup.png

Descarga las Herramientas Gratis