YOLO
YOLO is an object detection architecture which stands for “YOU ONLY LOOK ONCE”. It is a single neural network (single-stage detector) trained end to end to take in a photograph as input and predicts bounding boxes and class labels for each bounding box directly.
- YOLO has one fc network trained to predict the bboxes. And then another one to predict the class of the boxes.
Links
Got it running at ~60hz on the medium size model. Small size runs faster
Transfer Learning with YOLO
Refer to my repo where I did transfer learning for the Musashi-AI challenge.
Updated way, very easy, use in combination with Roboflow:
YOLO-OBB
Run Inference
NVIDIA Isaac ROS YOLOv5
https://github.com/NVIDIA-AI-IOT/YOLOv5-with-Isaac-ROS
This is nicee.
How much VRAM does YOLO use up?
Depends on the model size. I need to check this myself. For the small version, uses < 800 MB.