roboflow / notebooks

Examples and tutorials on using SOTA computer vision models and techniques. Learn everything from old-school ResNet, through YOLO and object-detection transformers like DETR, to the latest models like Grounding DINO and SAM.
https://roboflow.com/models
5.6k stars 882 forks source link

yolov8 OBB, pin ultralytics version #319

Closed LinasKo closed 1 month ago

LinasKo commented 1 month ago

Description

Pin the ultralytics version to the latest one. This avoids the issue where new albumentations are not supported by ultralytics, but not specified in their requirements files. This would fail during training.

Alternatively, the following would work:

!pip install albumentations==1.4.0 -q
!pip install ultralytics==8.1.9 -q

ALSO, I've updated and pinned supervision to the latest version.

Type of change

Please delete options that are not relevant.

How has this change been tested, please provide a testcase or example of how you tested the change?

Ran notebook.

Any specific deployment considerations

Another change is coming soon, filling in the missing picture in the end.

Docs

LinasKo commented 1 month ago

Seems like the image at the end is hidden. I'll sort that out before merging.

Also, the training logs seem a bit long.

LinasKo commented 1 month ago

Yolov8 OBB is back in action!