Deep Learning using Python – Complete Compact Beginner Guide
Deep Learning using Python – Complete Compact Beginner Guide, available at $49.99, has an average rating of 4.25, with 84 lectures, based on 22 reviews, and has 2170 subscribers.
You will learn about Deep Learning Computer Vision Keras Machine Learning Python This course is ideal for individuals who are Beginner who wants to learn the Basic to Advanced Deep Learning It is particularly useful for Beginner who wants to learn the Basic to Advanced Deep Learning.
Enroll now: Deep Learning using Python – Complete Compact Beginner Guide
Summary
Title: Deep Learning using Python – Complete Compact Beginner Guide
Price: $49.99
Average Rating: 4.25
Number of Lectures: 84
Number of Published Lectures: 84
Number of Curriculum Items: 84
Number of Published Curriculum Objects: 84
Original Price: $109.99
Quality Status: approved
Status: Live
What You Will Learn
- Deep Learning
- Computer Vision
- Keras
- Machine Learning
- Python
Who Should Attend
- Beginner who wants to learn the Basic to Advanced Deep Learning
Target Audiences
- Beginner who wants to learn the Basic to Advanced Deep Learning
Welcome to my new course ‘Deep Learning from the Scratch using Python and Keras’.
As you already know the artificial intelligence domain is divided broadly into deep learning and machine learning. In-fact deep learning is machine learning itself but Deep learning with its deep neural networks and algorithms try to learn high-level features from data without human intervention. That makes deep learning the base of all future self intelligent systems.
And in this course, I am starting from the very basic things to learn like learning the programming language basics and other supporting libraries at first and proceed with the core topic.
Let’s see what are the interesting topics included in this course. At first we will have an introductory theory session about Artificial Intelligence, Machine learning, Artificial Neurons based Deep Learning and Neural Networks.
After that, we are ready to proceed with preparing our computer for python coding by downloading and installing the anaconda package and will check and see if everything is installed fine. We will be using the browser based IDE called Jupyter notebook for our further coding exercises.
I know some of you may not be coming from a python based programming background. The next few sessions and examples will help you get the basic python programming skill to proceed with the sessions included in this course. The topics include Python assignment, flow-control, functions List and Tuples, Dictionaries, Functions etc.
Then we will start with learning the basics of the Python Numpy library which is used to adding support for large, multi-dimensional arrays and matrices, along with a large collection of classes and functions. Then we will learn the basics of matplotlib library which is a plotting library for Python for corresponding numerical expressions in NumPy. And finally the pandas library which is a software library written for the Python programming language for data manipulation and analysis.
After the basics, we will then install the deep learning libraries theano, tensorflow and the API for dealing with these called as Keras. We will be writing all our future codes in keras.
Then before we jump into deep learning, we will have an elaborate theory session about the basic Basic Structure of an Artificial Neuron and how they are combined to form an artificial Neural Network. Then we will see what exactly is an activation function, different types of most popular activation functions and the different scenarios we have to use each of them.
After that we will see about the loss function, the different types of popular loss functions and the different scenarios we have to use each of them.
Like the Activation and loss functions, we have optimizers which will optimize the neural network based on the training feedback. We will also see the details about most popular optimizers and how to decide in which scenarios we have to use each of them.
Then finally we will discuss about the most popular deep learning neural network types and their basic structure and use cases.
Further the course is divided into exactly two halves. The first half is about creating deep learning multi-layer neural network models for text based dataset and the second half about creating convolutional neural networks for image based dataset.
In Text based simple feed forward multi-layer neural network model we will start with a regression model to predict house prices of King County USA. The first step will be to Fetch and Load Dataset from the kaggle website into our program.
Then as the second step, we will do an EDA or an Exploratory Data Analysis of the loaded data and we will then prepare the data for giving it into our deep learning model. Then we will define the Keras Deep Learning Model.
Once we define the model, we will then compile the model and later we will fit our dataset into the compiled model and wait for the training to complete. After training, the training history and metrics like accuracy, loss etc can be evaluated and visualized using matplotlib.
Finally we have our already trained model. We will try doing a prediction of the king county real estate price using our deep learning model and evaluate the results.
That was a text based regression model. Now we will proceed with a text based binary classification model. We will be using a derived version of Heart Disease Data Set from the UCI Machine Learning Repository. Our aim is to predict if a person will be having heart disease or not from the learning achieved from this dataset. The same steps repeat here also.
The first step will be to Fetch and Load Dataset into our program.
Then as the second step, we will do an EDA or an Exploratory Data Analysis of the loaded data and we will then prepare the data for giving it into our deep learning model. Then we will define the Keras Deep Learning Model.
Once we define the model, we will then compile the model and later we will fit our dataset into the compiled model and wait for the training to complete. After training, the training history and metrics like accuracy, loss etc can be evaluated and visualized using matplotlib.
Finally we have our already trained model. We will try doing a prediction for heart disease using our deep learning model and evaluate the results.
After the text based binary classification model. Now we will proceed with a text based multi class classification model. We will be using the Red Wine Quality Data Set from the kaggle website. Our aim is to predict the multiple categories in which a redwine sample can be placed from the learning achieved from this dataset. The same steps repeat here also.
The first step will be to Fetch and Load Dataset into our program.
Then as the second step, we will do an EDA or an Exploratory Data Analysis of the loaded data and we will then prepare the data for giving it into our deep learning model. Then we will define the Keras Deep Learning Model.
Once we define the model, we will then compile the model and later we will fit our dataset into the compiled model and wait for the training to complete. After training, the training history and metrics like accuracy, loss etc can be evaluated and visualized using matplotlib.
Finally we have our already trained model. We will try doing a prediction for wine quality with a new set of data and then evaluate the categorical results.
We may be spending much time, resources and efforts to train a deep learning model. We will learn about the techniques to save an already trained model. This process is called serialization. We will at first serialize a model. Then later load it in another program and do the prediction without having to repeat the training.
That was about text based data. We will now proceed with image based data. In the preliminary session we will have an introduction to Digital Image Basics in which we learn about the composition and structure of a digital image.
Then we will learn about Basic Image Processing using Keras Functions. There are many classes and functions that help with pre processing an image in the Keras library api. We will learn about the most popular and useful functions one by one.
Another important and useful image processing function in keras is Image Augmentation in which slightly different versions of images are automatically created during training. We will learn about single image augmentation, augmentation of images within a directory structure and also data frame image augmentation.
Then another theory session about the basics of a Convolutional neural network or CNN. We will learn how the basic CNN layers like convolution layer, the pooling layer and the fully connected layer works.
There are concepts like Stride Padding and Flattening in convolution for image processing. We will learn them also one by one.
Now we are all set to start with our CNN Model. We will be designing a model that can classify 5 different types of flowers if provided with an image of a flower in any of these categories. We will be at first downloading the dataset from the kaggle website. Then the first step will be to Fetch and Load this Dataset from our computer into our program.
Then as the second step, we have to split this dataset manually for training and then later testing the model. We will arrange them into training and testing folders with each class labelled in separate folders.
Then we will define the Keras Deep Learning Model. Once we define the model, we will then compile the model and later we will fit our dataset into the compiled model and wait for the training to complete. After training, the training history and metrics like accuracy, loss etc can be evaluated and visualized using matplotlib.
Finally we have our already trained model. We will try doing a prediction for five different types of flowers with a new set of image data and then evaluate the categorical results.
There are many techniques which we can use to improve the quality of a model. Especially an image based model. The most popular techniques are doing dropout regularization of the model.
The next technique is doing the optimization and adjustment of the padding and also the filters in the convolution layers.
And finally optimization using image augmentation. We will tweak different augmentation options in this session.
Doing these optimization techniques manually one by one and comparing results is a very tedious task. So we will be using a technique called Hyper parameter tuning in which the keras library itself will switch different optimization techniques that we specify and will report and compare the results without we having to interfere in it.
Even though these techniques and creation of a model from the scratch is fun. Its very time consuming and may take ages if you are planning to design a large model. In this situation a technique called transfer learning can help us.
We will take the world renounced, state of the art, most popular pre-trained deep learning models designed by experts and we will transfer the learning into our model so that we can make use of the architecture of that model into our custom model that we are building.
The popular state of the art model architectures that we are going to use are the VGG16, VGG19 designed by deep learning experts from the University of Oxford and also ResNet50 created in ImageNet challenge to address the vanishing gradient problem.
We will at first download these models using keras and will try simple predictions using these pre-trained models. Later we will try the network training for our flower dataset itself using the VGG16. we will make few changes in the model to incorporate our dataset into it. Since the network architecture is not that simple, in our computer it will take a lot of time to complete the training.
So instead of CPU, we have to use a GPU to enhance parallel processing. We will be using a cloud based Free GPU service provied by goggle called Google Colab. At first we will try training with VGG16 in google colab. We will prepare, zip and upload the dataset into google colab. Then we will extract it using linux comands and then do the training. The training is almost ten times faster compared to the local computer. Once we have the trained model we will serialize the model and will do the prediction.
The same procedure will be repeated for VGG19 and also for ResNet.
And that’s all about the topics which are currently included in this quick course. The code, images, models and weights used in this course has been uploaded and shared in a folder. I will include the link to download them in the last session or the resource section of this course. You are free to use the code in your projects with no questions asked.
Also after completing this course, you will be provided with a course completion certificate which will add value to your portfolio.
So that’s all for now, see you soon in the class room. Happy learning and have a great time.
Course Curriculum
Chapter 1: Course Introduction and Table of Contents
Lecture 1: Course Introduction and Table of Contents
Chapter 2: Introduction to AI and Machine Learning
Lecture 1: Introduction to AI and Machine Learning
Chapter 3: Introduction to Deep learning and Neural Networks
Lecture 1: Introduction to Deep learning and Neural Networks
Chapter 4: Setting up Computer – Installing Anaconda
Lecture 1: Setting up Computer – Installing Anaconda
Chapter 5: Python Basics
Lecture 1: Python Basics – Assignment
Lecture 2: Python Basics – Flow Control – Part 1
Lecture 3: Python Basics – Flow Control – Part 2
Lecture 4: Python Basics – List and Tuples
Lecture 5: Python Basics – Dictionary and Functions – part 1
Lecture 6: Python Basics – Dictionary and Functions – part 2
Chapter 6: Numpy Basics
Lecture 1: Numpy Basics – Part 1
Lecture 2: Numpy Basics – Part 2
Chapter 7: Matplotlib Basics
Lecture 1: Matplotlib Basics – part 1
Lecture 2: Matplotlib Basics – part 2
Chapter 8: Pandas Basics
Lecture 1: Pandas Basics – Part 1
Lecture 2: Pandas Basics – Part 2
Chapter 9: Installing Deep Learning Libraries
Lecture 1: Installing Deep Learning Libraries
Chapter 10: Basic Structure of Artificial Neuron and Neural Network
Lecture 1: Basic Structure of Artificial Neuron and Neural Network
Chapter 11: Activation Functions Introduction
Lecture 1: Activation Functions Introduction
Chapter 12: Popular Types of Activation Functions
Lecture 1: Popular Types of Activation Functions
Chapter 13: Popular Types of Loss Functions
Lecture 1: Popular Types of Loss Functions
Chapter 14: Popular Optimizers
Lecture 1: Popular Optimizers
Chapter 15: Popular Neural Network Types
Lecture 1: Popular Neural Network Types
Chapter 16: King County House Sales Regression Model – Step 1 Fetch and Load Dataset
Lecture 1: King County House Sales Regression Model – Step 1 Fetch and Load Dataset
Chapter 17: Step 2 and 3 EDA and Data Preparation
Lecture 1: Step 2 and 3 EDA and Data Preparation – Part 1
Lecture 2: Step 2 and 3 EDA and Data Preparation – Part 2
Chapter 18: Step 4 Defining the Keras Model
Lecture 1: Step 4 Defining the Keras Model – Part 1
Lecture 2: Step 4 Defining the Keras Model – Part 2
Chapter 19: Step 5 and 6 Compile and Fit Model
Lecture 1: Step 5 and 6 Compile and Fit Model
Chapter 20: Step 7 Visualize Training and Metrics
Lecture 1: Step 7 Visualize Training and Metrics
Chapter 21: Step 8 Prediction Using the Model
Lecture 1: Step 8 Prediction Using the Model
Chapter 22: Heart Disease Binary Classification Model – Introduction
Lecture 1: Heart Disease Binary Classification Model – Introduction
Chapter 23: Step 1 – Fetch and Load Data
Lecture 1: Step 1 – Fetch and Load Data
Chapter 24: Step 2 and 3 – EDA and Data Preparation
Lecture 1: Step 2 and 3 – EDA and Data Preparation – Part 1
Lecture 2: Step 2 and 3 – EDA and Data Preparation – Part 2
Chapter 25: Step 4 – Defining the model
Lecture 1: Step 4 – Defining the model
Chapter 26: Playing around with the Tensorflow Payground
Lecture 1: Playing around with the Tensorflow Payground
Chapter 27: Step 5 – Compile Fit and Plot the Model
Lecture 1: Step 5 – Compile Fit and Plot the Model
Chapter 28: Step 5 – Predicting Heart Disease using Model
Lecture 1: Step 5 – Predicting Heart Disease using Model
Chapter 29: Testing and Evaluating Heart Disease Model
Lecture 1: Testing and Evaluating Heart Disease Model – Part 1
Lecture 2: Testing and Evaluating Heart Disease Model – Part 2
Chapter 30: Redwine Quality MultiClass Classification Model – Introduction
Lecture 1: Redwine Quality MultiClass Classification Model – Introduction
Chapter 31: Step1 – Fetch and Load Data
Lecture 1: Step1 – Fetch and Load Data
Chapter 32: Step 2 – EDA and Data Visualization
Lecture 1: Step 2 – EDA and Data Visualization
Chapter 33: Step 3 – Defining the Model
Lecture 1: Step 3 – Defining the Model
Chapter 34: Step 4 – Compile Fit and Plot the Model
Lecture 1: Step 4 – Compile Fit and Plot the Model
Chapter 35: Step 5 – Predicting Wine Quality using Model
Lecture 1: Step 5 – Predicting Wine Quality using Model
Chapter 36: Serialize and Save Trained Model for Later Use
Lecture 1: Serialize and Save Trained Model for Later Use
Chapter 37: Digital Image Basics
Lecture 1: Digital Image Basics
Chapter 38: Basic Image Processing using Keras Functions
Lecture 1: Basic Image Processing using Keras Functions – Part 1
Lecture 2: Basic Image Processing using Keras Functions – Part 2
Lecture 3: Basic Image Processing using Keras Functions – Part 3
Chapter 39: Keras Single Image Augmentation
Lecture 1: Keras Single Image Augmentation – Part 1
Lecture 2: Keras Single Image Augmentation – Part 2
Chapter 40: Keras Directory Image Augmentation
Lecture 1: Keras Directory Image Augmentation
Chapter 41: Keras Data Frame Augmentation
Lecture 1: Keras Data Frame Augmentation
Chapter 42: CNN Basics
Lecture 1: CNN Basics
Chapter 43: Stride, Padding and Flattening Concepts of CNN
Instructors
-
Abhilash Nelson
Computer Engineering Master & Senior Programmer at Dubai
Rating Distribution
- 1 stars: 1 votes
- 2 stars: 0 votes
- 3 stars: 1 votes
- 4 stars: 4 votes
- 5 stars: 16 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024