YOLO Object Detection | YoloV1 Explanation and Implementation Tutorial

Поділитися
Вставка
  • Опубліковано 2 лют 2025

КОМЕНТАРІ • 30

  • @sartq_333
    @sartq_333 Місяць тому

    one of the finest videos on yolo available on internet. contains intuitive as well as detailed explanation (right from research paper). concepts like these are hard to explain in so much detail. thanks a lot for the amazing work, cheers!

  • @hieuhienhoa29
    @hieuhienhoa29 3 місяці тому

    There're a lot of explaining Yolo video on youtube but this is still a clearest explaining video i 've ever seen. Appreciate your great works.

  • @坨坨王
    @坨坨王 22 дні тому

    thank you so much, this video is very helpful to me. you are very generous.

    • @Explaining-AI
      @Explaining-AI  21 день тому

      I'm happy that the video ended up being of help to you :)

  • @Tutor482
    @Tutor482 3 місяці тому

    this is an absolutely excellent explanation of YOLO algorithm. I have been going bonkers looking for a proper explanation and there is nothing like this one. Thank you so much for working so hard on this.

    • @Explaining-AI
      @Explaining-AI  3 місяці тому

      Thank you for the appreciation and your kind words :)

  • @princekhunt1
    @princekhunt1 Місяць тому

    Nice tutorials.
    Keep on create a videos such this we will support.

  • @shreyaswaghmode5870
    @shreyaswaghmode5870 4 місяці тому +1

    We want more videos like this ❤

  • @Dimo-u2o
    @Dimo-u2o 2 місяці тому

    great explanation

  • @kishantripathi4521
    @kishantripathi4521 4 місяці тому

    great explanation👍

  • @Explaining-AI
    @Explaining-AI  4 місяці тому +1

    *Github Implementation Link* - github.com/explainingai-code/Yolov1-PyTorch

  • @prathameshdinkar2966
    @prathameshdinkar2966 3 місяці тому

    Nicely explained! Can you tell how do you create the animation, is there any library?

    • @Explaining-AI
      @Explaining-AI  3 місяці тому

      Thank you! The animations are all done using Canva. Bulk of the video is created in canva and then I use imovie at the end for some editing.

    • @prathameshdinkar2966
      @prathameshdinkar2966 3 місяці тому

      @@Explaining-AI Ohk, nice I thought you were using Manim

    • @Explaining-AI
      @Explaining-AI  3 місяці тому

      @@prathameshdinkar2966 Yeah, I started with Canva, thought will get to Manim if needed, but then canva fulfilled all my requirements(as of now), so never got to it.

  • @fayezalhussein7115
    @fayezalhussein7115 4 місяці тому

    thanks alot

  • @adityawaghaskar4250
    @adityawaghaskar4250 4 місяці тому

    Do you have any plans to make videos on detail mathematical explanation of reinforcement learning and its implementation? Will be highly interested to know about it.

    • @Explaining-AI
      @Explaining-AI  4 місяці тому

      Hello, Yes I intend to do that but its going to take some time to get there. Primarily because I would myself need to have a clear and in-depth understanding of it, which I dont as of now. But RL is definitely something thats on my list

    • @adityawaghaskar4250
      @adityawaghaskar4250 4 місяці тому

      @@Explaining-AI glad to know that.

  • @fayezalhussein7115
    @fayezalhussein7115 4 місяці тому

    dear may you explain object segmentation and tracking too, please

    • @Explaining-AI
      @Explaining-AI  4 місяці тому +1

      Yes, I plan to start those once I have covered a decent chunk of detection papers. Then in parallel will also release videos on segmentation and later tracking.

  • @CvAIEntuthiast
    @CvAIEntuthiast 4 місяці тому

    Hi!
    Could you make a video like this on the latest YOLO models? or maybe mention what they have done differently in the latest model implementations

    • @Explaining-AI
      @Explaining-AI  4 місяці тому

      Hello, Yes definitely, thats exactly whats in plan for this detection series. I am planning to do SSD first and then yolov2-3, yolov5 and so on. Ultimately its going to cover all yolo versions.

  • @anshumansinha5874
    @anshumansinha5874 4 місяці тому +1

    Let's say there is an image with 2 concentric spheres, hence both object belong to the same anchor box. Will YOLO v1 be able to detect both? Asking in reference to @7:46

    • @Explaining-AI
      @Explaining-AI  4 місяці тому

      Assuming both spheres would belong to the same class, and with the value of B(number of bounding boxes predicted per grid cell)=2, then yes YOLO v1 should be able to predict both.

  • @anshumansinha5874
    @anshumansinha5874 4 місяці тому

    @13:00 , The net loss function = Localisation loss + Confidence loss + Classification loss. But Isn't the confidence loss simillar to localisation loss? Also, what are target confidence scores in the Confidence loss is it also (1/0)?

    • @Explaining-AI
      @Explaining-AI  4 місяці тому

      Localization just predicts the xywh coordinate. Confidence predicts the objectness(the target of it is 0 or 1). I talk about targets in more detail @22:07
      So localization answers the question 'where the object is' whereas Confidence answers the question 'Is there even an object'.