Mô tả

Latest update: Instead of SSD, I show you how to use RetinaNet, which is better and more modern. I show you both how to use a pretrained model and how to train one yourself with a custom dataset on Google Colab.

This is one of the most exciting courses I’ve done and it really shows how fast and how far deep learning has come over the years.

When I first started my deep learning series, I didn’t ever consider that I’d make two courses on convolutional neural networks.

I think what you’ll find is that, this course is so entirely different from the previous one, you will be impressed at just how much material we have to cover.

Let me give you a quick rundown of what this course is all about:

We’re going to bridge the gap between the basic CNN architecture you already know and love, to modern, novel architectures such as VGG, ResNet, and Inception (named after the movie which by the way, is also great!)

We’re going to apply these to images of blood cells, and create a system that is a better medical expert than either you or I. This brings up a fascinating idea: that the doctors of the future are not humans, but robots.

In this course, you’ll see how we can turn a CNN into an object detection system, that not only classifies images but can locate each object in an image and predict its label.

You can imagine that such a task is a basic prerequisite for self-driving vehicles. (It must be able to detect cars, pedestrians, bicycles, traffic lights, etc. in real-time)

We’ll be looking at a state-of-the-art algorithm called SSD which is both faster and more accurate than its predecessors.

Another very popular computer vision task that makes use of CNNs is called neural style transfer.

This is where you take one image called the content image, and another image called the style image, and you combine these to make an entirely new image, that is as if you hired a painter to paint the content of the first image with the style of the other. Unlike a human painter, this can be done in a matter of seconds.

I will also introduce you to the now-famous GAN architecture (Generative Adversarial Networks), where you will learn some of the technology behind how neural networks are used to generate state-of-the-art, photo-realistic images.

Currently, we also implement object localization, which is an essential first step toward implementing a full object detection system.

I hope you’re excited to learn about these advanced applications of CNNs, I’ll see you in class!


AWESOME FACTS:

  • One of the major themes of this course is that we’re moving away from the CNN itself, to systems involving CNNs.

  • Instead of focusing on the detailed inner workings of CNNs (which we've already done), we'll focus on high-level building blocks. The result? Almost zero math.

  • Another result? No complicated low-level code such as that written in TensorflowTheano, or PyTorch (although some optional exercises may contain them for the very advanced students). Most of the course will be in Keras which means a lot of the tedious, repetitive stuff is written for you.


"If you can't implement it, you don't understand it"

  • Or as the great physicist Richard Feynman said: "What I cannot create, I do not understand".

  • My courses are the ONLY courses where you will learn how to implement machine learning algorithms from scratch

  • Other courses will teach you how to plug in your data into a library, but do you really need help with 3 lines of code?

  • After doing the same thing with 10 datasets, you realize you didn't learn 10 things. You learned 1 thing, and just repeated the same 3 lines of code 10 times...


Suggested Prerequisites:

  • Know how to build, train, and use a CNN using some library (preferably in Python)

  • Understand basic theoretical concepts behind convolution and neural networks

  • Decent Python coding skills, preferably in data science and the Numpy Stack


WHAT ORDER SHOULD I TAKE YOUR COURSES IN?:

  • Check out the lecture "Machine Learning and AI Prerequisite Roadmap" (available in the FAQ of any of my courses, including the free Numpy course)


UNIQUE FEATURES

  • Every line of code explained in detail - email me any time if you disagree

  • No wasted time "typing" on the keyboard like other courses - let's be honest, nobody can really write code worth learning about in just 20 minutes from scratch

  • Not afraid of university-level math - get important details about algorithms that other courses leave out

Bạn sẽ học được gì

Understand and apply transfer learning

Understand and use state-of-the-art convolutional neural nets such as VGG, ResNet and Inception

Understand and use object detection algorithms like SSD

Understand and apply neural style transfer

Understand state-of-the-art computer vision topics

Class Activation Maps

GANs (Generative Adversarial Networks)

Object Localization Implementation Project

Yêu cầu

  • Know how to build, train, and use a CNN using some library (preferably in Python)
  • Understand basic theoretical concepts behind convolution and neural networks
  • Decent Python coding skills, preferably in data science and the Numpy Stack

Nội dung khoá học

16 sections

Welcome

7 lectures
Introduction
02:35
Outline and Perspective
06:49
Get Your Hands Dirty, Practical Coding Experience, Data Links
08:33
How to use Github & Extra Coding Tips (Optional)
11:12
Where to get the code, notebooks, and data
03:23
How to Succeed in this Course
03:04
Temporary 403 Errors
02:57

Machine Learning Basics Review

11 lectures
What is Machine Learning?
14:26
Code Preparation (Classification Theory)
15:59
Beginner's Code Preamble
04:38
Classification Notebook
22:21
Code Preparation (Regression Theory)
07:18
Regression Notebook
27:28
The Neuron
09:58
How does a model "learn"?
10:53
Making Predictions
06:45
Saving and Loading a Model
04:27
Suggestion Box
03:10

Artificial Neural Networks (ANN) Review

10 lectures
Artificial Neural Networks Section Introduction
06:00
Forward Propagation
09:40
The Geometrical Picture
09:43
Activation Functions
17:18
Multiclass Classification
08:41
How to Represent Images
12:36
Color Mixing Clarification
00:54
Code Preparation (ANN)
12:42
ANN for Image Classification
08:36
ANN for Regression
11:05

Convolutional Neural Networks (CNN) Review

11 lectures
What is Convolution? (part 1)
16:38
What is Convolution? (part 2)
05:56
What is Convolution? (part 3)
06:41
Convolution on Color Images
15:58
CNN Architecture
20:58
CNN Code Preparation
15:13
CNN for Fashion MNIST
06:46
CNN for CIFAR-10
04:28
Data Augmentation
08:51
Batch Normalization
05:14
Improving CIFAR-10 Results
10:22

VGG and Transfer Learning

9 lectures
VGG Section Intro
03:04
What's so special about VGG?
07:00
Transfer Learning
08:22
Relationship to Greedy Layer-Wise Pretraining
02:19
Getting the data
02:17
Code pt 1
09:23
Code pt 2
03:41
Code pt 3
03:27
VGG Section Summary
01:47

ResNet (and Inception)

9 lectures
ResNet Section Intro
02:49
ResNet Architecture
12:45
Transfer Learning with ResNet in Code
08:32
Blood Cell Images Dataset
03:02
How to Build ResNet in Code
11:16
1x1 Convolutions
04:03
Optional: Inception
06:47
Different sized images using the same network
04:12
ResNet Section Summary
02:27

Object Detection (SSD / RetinaNet)

11 lectures
SSD Section Intro
05:04
Object Localization
06:36
What is Object Detection?
02:53
How would you find an object in an image?
08:40
The Problem of Scale
03:47
The Problem of Shape
03:52
SSD Tensorflow Object Detection API (pt 1)
12:04
SSD Tensorflow Object Detection API (pt 2)
12:15
SSD for Video Object Detection
11:59
Optional: Intersection over Union & Non-max Suppression
05:06
SSD Section Summary
02:52

Neural Style Transfer

7 lectures
Style Transfer Section Intro
02:52
Style Transfer Theory
11:23
Optimizing the Loss
08:02
Code pt 1
07:46
Code pt 2
07:13
Code pt 3
03:50
Style Transfer Section Summary
02:21

Class Activation Maps

2 lectures
Class Activation Maps (Theory)
07:09
Class Activation Maps (Code)
09:54

GANs (Generative Adversarial Networks)

2 lectures
GAN Theory
15:51
GAN Code
12:10

Object Localization Project

15 lectures
Localization Introduction and Outline
13:37
Localization Code Outline (pt 1)
10:39
Localization Code (pt 1)
09:10
Localization Code Outline (pt 2)
04:52
Localization Code (pt 2)
11:03
Localization Code Outline (pt 3)
03:18
Localization Code (pt 3)
04:16
Localization Code Outline (pt 4)
03:19
Localization Code (pt 4)
02:06
Localization Code Outline (pt 5)
07:42
Localization Code (pt 5)
08:39
Localization Code Outline (pt 6)
07:06
Localization Code (pt 6)
07:37
Localization Code Outline (pt 7)
04:58
Localization Code (pt 7)
12:07

Keras and Tensorflow 2 Basics Review

6 lectures
(Review) Tensorflow Basics
07:27
(Review) Tensorflow Neural Network in Code
09:43
(Review) Keras Discussion
06:48
(Review) Keras Neural Network in Code
06:37
(Review) Keras Functional API
04:26
(Review) How to easily convert Keras into Tensorflow 2.0 code
01:49

Setting Up Your Environment (FAQ by Student Request)

3 lectures
Pre-Installation Check
04:12
Anaconda Environment Setup
20:20
How to install Numpy, Scipy, Matplotlib, Pandas, IPython, Theano, and TensorFlow
17:30

Extra Help With Python Coding for Beginners (FAQ by Student Request)

4 lectures
How to Code by Yourself (part 1)
15:54
How to Code by Yourself (part 2)
09:23
Proof that using Jupyter Notebook is the same as not using it
12:29
Python 2 vs Python 3
04:38

Effective Learning Strategies for Machine Learning (FAQ by Student Request)

4 lectures
How to Succeed in this Course (Long Version)
10:24
Is this for Beginners or Experts? Academic or Practical? Fast or slow-paced?
22:04
Machine Learning and AI Prerequisite Roadmap (pt 1)
11:18
Machine Learning and AI Prerequisite Roadmap (pt 2)
16:07

Appendix / FAQ Finale

2 lectures
What is the Appendix?
02:48
BONUS
05:31

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.