sezan92 / computer-vision-course

This repo is the homebase of a community driven course on Computer Vision with Neural Networks. Feel free to join us on the Hugging Face discord: hf.co/join/discord
MIT License
1 stars 0 forks source link

Evolution of YOLO #31

Closed AntonisCSt closed 2 months ago

AntonisCSt commented 4 months ago

This PR addresses #23 Issue of Unit's 2 Yolo chapter #20

AntonisCSt commented 2 months ago

Very well written! However, I have suggestions that you can add. YOLOv1: It’s worth mentioning that YOLOv1 used a single neural network to predict bounding boxes and class probabilities directly from full images in one evaluation. Maybe can also explain briefly what YOLO actually does. The original YOLO model introduced the concept of using a single convolutional neural network (CNN) that processes the entire image at once, dividing it into an SxS grid. Each grid cell predicts bounding boxes and class probabilities directly.

Other than that, it looks great!

Thanks added some changes in the introduction!