Views
No views yet
cfd5d3a985b0249de009b67d04f37263e11cdf3d and upstream checkpoint:
https://download.openmmlab.com/mmdetection/v3.0/rtmdet/rtmdet-ins_tiny_8xb32-300e_coco/rtmdet-ins_tiny_8xb32-300e_coco_20221130_151727-ec670f7e.pth
(SHA-256 ec670f7ee9e20bd7931e15f15b7016f7fe531baaab81f2e6153382d046111885).data_preprocessor.* and batch-tracking buffers were omitted, bbox_head. keys were renamed to head., and the loaded state dict was saved with LibreYOLO checkpoint metadata schema v1.0 (task=segment). Learned model parameters are otherwise preserved.imgsz=640, conf=0.001, next to the official mmdetection references:| Metric | LibreYOLO | Official |
|---|---|---|
| COCO val2017 mask mAP50-95 | 0.3538 | 35.4 |
| COCO val2017 box mAP50-95 | 0.4049 | 40.5 |
| SHA256 | 55c387ce50424e9bf1816b59f6eff7ec1ea9455db35049be46f946670c18d775 |
1from libreyolo import LibreYOLO
2
3model = LibreYOLO("LibreRTMDett-seg.pt")
4res = model.predict("image.jpg")
5res.masks # instance masks
6res.boxes # boxes, scores, classes