Companies Home Search Profile

New Deep Learning for Computer Vision with Tensorflow 2.X

Focused View

CARLOS QUIROS

10:36:50

11 View
  • 1. Introduction.mp4
    03:16
  • 2. Google Colaboratory.mp4
    05:53
  • 3. Tensorflow 2.X GPU local install and setup.mp4
    12:23
  • 1. CNNs Chapter Intro.mp4
    01:14
  • 2. Image Fundamentals.mp4
    06:23
  • 3. First glance of CNNs - The Input Layer.mp4
    07:07
  • 4. Convolution Operation.mp4
    10:37
  • 5. Sparsity Connections and Parameter Sharing.mp4
    04:33
  • 6. Depthwise Separable Convolution.mp4
    10:53
  • 7. Padding and the output shape of a Conv Layer.mp4
    07:24
  • 8. Conv2D Layer with Keras - Practical example.mp4
    13:45
  • 9. Pooling Layer.mp4
    04:33
  • 10. Fully Connected Layer.mp4
    03:40
  • 11. ReLU and other activation functions.mp4
    05:33
  • 12. Batch Normalization.mp4
    09:14
  • 13. Calculating the number of training parameters.mp4
    12:08
  • 14. Fashion MNIST Part 1.mp4
    15:34
  • 15. Fashion MNIST Part 2.mp4
    06:02
  • 16. Train a ConvNet - CIFAR10 - Part 1.mp4
    14:18
  • 17. Train a ConvNet - CIFAR10 - Part 2.mp4
    16:33
  • 18. Load images with Generators - Tensorflow 2.X.mp4
    14:18
  • 19. Data Augmentation - CIFAR10.mp4
    15:30
  • 20. Practical App - Detect Covid19 from X-ray images.mp4
    17:02
  • 21. Pretrainded models - VGG16.mp4
    11:26
  • 22. ResNet Model.mp4
    19:27
  • 23. ResNet50 with Keras.mp4
    17:36
  • 24. Inception Model.mp4
    13:12
  • 25. InceptionV3 with keras.mp4
    19:36
  • 26. Vision Transformer (ViT) model.mp4
    13:32
  • 27. Vision Transformer (ViT) app - Covid19.mp4
    18:22
  • 1. OpenImageV6 and Voxel 51.mp4
    15:54
  • 2. Roboflow.mp4
    13:38
  • 3. LabelImg.mp4
    08:06
  • 1. Object Detection Intro.mp4
    01:02
  • 2. Object Detection - The beginnings.mp4
    06:55
  • 3. Metrics in Object Detection.mp4
    11:44
  • 4. Fast R-CNN model.mp4
    06:49
  • 5. Faster R-CNN model.mp4
    11:42
  • 6. Single Shot Detector (SSD) model.mp4
    17:38
  • 7. Object Detection on Images and Videos with Tensorflow Object Detection API.mp4
    18:38
  • 8. Train custom dataset with TF Object Detection API - BCCD - Part 1.mp4
    11:26
  • 9. Train custom dataset with TF Object Detection API - BCCD - Part 2.mp4
    17:46
  • 10. Yolov1 model.mp4
    18:43
  • 11. Yolov2 model.mp4
    09:48
  • 12. Yolov3 model.mp4
    12:31
  • 13. Yolov4 model - Part 1.mp4
    11:24
  • 14. Yolov4 model - Part 2.mp4
    10:42
  • 15. Object Detection on images and videos with YOLOv4.mp4
    15:01
  • 16. Train your custom dataset with YOLOv4 - Robot detector app.mp4
    16:20
  • 17. License Plate Recognition with YOLOv4-OpenCV-CNNs-Part1.mp4
    08:59
  • 18. License Plate Recognition with YOLOv4-OpenCV-CNNs-Part2.mp4
    08:28
  • 19. License Plate Recognition with YOLOv4-OpenCV-CNNs-Part3.mp4
    17:27
  • 20. License Plate Recognition with YOLOv4-OpenCV-CNNs-Part4.mp4
    20:46
  • 21. YOLOv7-Object Detection on Images & Videos.mp4
    13:12
  • 22. The final class.mp4
    01:07
  • Description


    Updated version of the previous course. Contains new SOTAs such as Vision Transformer, YOLOv7 and U-Net

    What You'll Learn?


    • The application of deep learning in computer vision field
    • The course is focused on image classification and object detection
    • We'll review the main state of the art algorithms
    • We'll develop several practical applications such as detecting Covid19 and License Plate Recognition

    Who is this for?


  • Intermediate level users who want to learn about the latest SOTA algorithms
  • Users who want to learn in a concise way the theory behind the main SOTA algorithms
  • Users who want to learn how to implement practical apps for object detection and image classification
  • What You Need to Know?


  • Python, Tensorflow
  • OpenCV
  • More details


    Description

    This new course is the updated version of the previous course Deep Learning for Computer Vision with Tensorflow2.X.

    It contains new classes explaining in detail many state of the art algorithms for image classification and object detection.

    The course was entirely written using Google Colaboratory(Colab) in order to help students that don't have a GPU card in your local system, however you can follow the course easily if you have one.


    This time the course starts explaining in detail the building blocks from ConvNets which are the base for image classification and the base for the feature extractors in the latest object detection algorithms.


    We're going to study in detail the following concepts and algorithms:

    - Image Fundamentals in Computer Vision,

    - Load images in Generators with TensorFlow,

    - Convolution Operation,

    - Sparsity Connections and parameter sharing,

    - Depthwise separable convolution,

    - Padding,

    - Conv2D layer with Tensorflow,

    - Pooling layer,

    - Fully connected layer,

    - Batch Normalization,

    - ReLU activation and other functions,

    - Number of training parameters calculation,

    - Image Augmentation, etc

    - Different ConvNets architectures such as:

      * LeNet5,

      * AlexNet,

      * VGG-16,

      * ResNet,

      * Inception,

      * The lastest state of art Vision Transformer (ViT)


    - Many practical applications using famous datasets and sources such as:

      * Covid19 on X-Ray images,

      * CIFAR10,

      * Fashion MNIST,

      * BCCD,

      * COCO dataset,

      * Open Images Dataset V6 through Voxel FiftyOne,

      * ROBOFLOW


    In the Object Detection chapter we'll learn the theory and the application behind the main object detection algorithms doing a journey since the beginnings to the latest state of the art algorithms.

    You'll be able to use the main algorithms of object detection to develop practical applications.


    Some of the content in this Chapter is the following:


    - Object detection milestones since Selective Search algorithm,

    - Object detection metrics,

    - Theoretical background for R-CNN, Fast R-CNN and Faster R-CNN,

    - Detect blood cells using Faster R-CNN application,

    - Theoretical background for Single Shot Detector (SSD),

    - Train your customs datasets using different models with TensorFlow Object Detection API

    - Object Detection on images and videos,

    - YOLOv2 and YOLOv3 background.

    - Object detection from COCO dataset application using YOLOv4 model.

    - YOLOv4 theoretical class

    - Practical application for detecting Robots using a custom dataset (R2D2 and C3PO robots dataset) and YOLOv4 model

    - Practical application for License Plate recognition converting the plates images in raw text format (OCR) with Yolov4, OpenCV and ConvNets

    -Object detection with the latest state of the art YOLOv7.

    -Face Mask detection application with YOLOv7


    I have updated the course with a new chapter for Image Segmentation:

    - I review the theory behind U-Net for image segmentation

    - We develop an application for detecting brain tumors from MRI images using U-Net.

    - We train models with U-Net and U-Net with attention mechanism.


    You will find in this course a concise review of the theory with intuitive concepts of the algorithms, and you will be able to put in practice your knowledge with many practical examples using your own datasets.


    This new course represents a huge improvement of the previous course, however the previous course was very well qualified by the students, some of the inspiring comments are here:

    * Maximiliano D'Amico (5 stars): Very interesting and updated course on YOLO!

    * Stefan Lankester (5 stars): Thanks Carlos for this valuable training. Good explanation with broad treatment of the subject object recognition in images and video. Showing interesting examples and references to the needed resources. Good explanation about which versions of different python packages should be used for successful results.

    * Shihab (5 stars): It was a really amazing course. Must recommend for everyone.

    * Estanislau de Sena Filho (5 stars): Excellent course. Excellent explanation. It's the best machine learning course for computer vision. I recommend it

    * Areej AI Medinah (5 stars): The course is really good for computer vision. It consists of all material required to put computer vision projects in practice. After building a great understanding through theory, it also gives hands-on experience.

    * Dave Roberto (5 stars): The course is completely worth it. The teacher clearly conveys the concepts and it is clear that he understands them very well (there is not the same feeling with other courses). The schemes he uses are not the usual ones you can see in other courses, but they really help much better to illustrate and understand. I would give eight stars to the course, but the maximum is five. It's one of the few Udemy courses that has left me really satisfied.


    Who this course is for:

    • Intermediate level users who want to learn about the latest SOTA algorithms
    • Users who want to learn in a concise way the theory behind the main SOTA algorithms
    • Users who want to learn how to implement practical apps for object detection and image classification

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    CARLOS QUIROS
    CARLOS QUIROS
    Instructor's Courses
    Industrial Engineer with more than 20 years in developing and managing business, with vast experience on process analysis and developing business information systems for data science. He has an Industrial Engineering degree from Pontificia Universidad Catolica del Peru (Lima-Peru) and Master in Business Administration (MBA) from ESAN Graduated School of Business (Lima-Peru).He is also an experience developer of machine learning and data science models in many fields of the industry and services like Marketing, Logistics, Finance, Manufacture, Quality Control, Computer Vision, NLP, Deep Learning apps and many others.He wants to share his experience teaching you on a simple and practical way, illustrating concepts based on graphics for better understanding.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 55
    • duration 10:36:50
    • Release Date 2024/03/11