Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Modern Deep Convolutional Neural Networks with PyTorch
Rating: 4.3 out of 5(157 ratings)
8,448 students

Modern Deep Convolutional Neural Networks with PyTorch

Image Recognition with Convolutional Neural Networks. Advanced techniques for Deep Learning and Representation learning
Last updated 2/2020
English
English [Auto],

What you'll learn

  • Convolutional Neural Networks
  • Image Processing
  • Advance Deep Learning Techniques
  • Regularization, Normalization
  • Transfer Learning

Course content

5 sections29 lectures1h 54m total length
  • Introduction3:39

    Explore modern deep convolutional neural networks with PyTorch, covering fundamentals, advanced training, regularization, autoencoders, and real-world image classification challenges.

  • Computer Vision Problems2:32

    Study key computer vision problems solved with convolutional neural networks, including classification, image segmentation, object detection, image captioning, and person identification, plus generative adversarial networks and style transfer.

  • Linear Layer and Classification Pipeline4:39

    Treat linear layer as a learnable matrix transforming inputs into logits, insert nonlinearities between layers, and use softmax cross-entropy for classification or l2 loss for regression, trained by gradient descent.

  • Loss functions and Softmax3:49

    Learn how the soft max layer transforms logics into probabilities via exponentials and normalization, and examine binary cross entropy and cross entropy loss in PyTorch, including sigmoid outputs.

  • Stochastic Gradient Descend5:08

    Apply stochastic gradient descent to train neural networks by updating theta with the gradient of the loss using mini-batches, data shuffling, and a learning rate, considering batch size.

  • PRACTICE #1: Data loading4:48

    Load and preprocess the CFR 10-class dataset in pytorch, applying tensor conversion and normalization with mean 0.5 and std 0.5, then batch 4 with 2 workers for a linear classifier.

  • PRACTICE #2: Linear Classifier in PyTorch (part 1)6:15

    Learn to implement a linear classifier in PyTorch by building a one-layer network, shaping inputs into vectors, applying a linear projection, and training with cross-entropy loss using the Adam optimizer.

  • PRACTICE #3: Linear Classifier in PyTorch (part 2)3:18

    Train a linear classifier in PyTorch using a training loop with train loader, forward pass, loss, backpropagation, and optimization; evaluate on test loader with 31% accuracy.

  • PRACTICE #4: Multi-layer perceptron5:34

    Build a multilayer perceptron by stacking linear layers with nonlinear activations in PyTorch, using 32x32 color images, and contrast with the linear classifier to pave the way for convolutional improvements.

Requirements

  • Machine Learning
  • Linear Regression and Classification
  • Matrix Calculus, Probability
  • Deep Learning basis: Multi perceptron, optimization
  • Python, PyTorch

Description

Dear friend, welcome to the course "Modern Deep Convolutional Neural Networks"! I tried to do my best in order to share my practical experience in Deep Learning and Computer vision with you.

The course consists of 4 blocks:

  1. Introduction section, where I remind you, what is Linear layers, SGD, and how to train Deep Networks.

  2. Convolution section, where we discuss convolutions, it's parameters, advantages and disadvantages.

  3. Regularization and normalization section, where I share with you useful tips and tricks in Deep Learning.

  4. Fine tuning, transfer learning, modern datasets and architectures

If you don't understand something, feel free to ask equations. I will answer you directly or will make a video explanation.

Prerequisites:

  • Matrix calculus, Linear Algebra, Probability theory and Statistics

  • Basics of Machine Learning: Regularization, Linear Regression and Classification,

  • Basics of Deep Learning: Linear layers, SGD,  Multi-layer perceptron

  • Python, Basics of PyTorch

Who this course is for:

  • Who knows a bit about neural networks
  • Who wants to enrich their Deep Learning and Image Processing knowledge
  • Who wants to study advanced techniques and practices