Views
No views yet
tue-mps/coco_panoptic_eomt_base_640_2x (upstream 2x training schedule).
Copyright (c) 2025 Mobile Perception Systems Lab at TU/e. Licensed under the MIT License.thing_class_ids metadata field (COCO panoptic is contiguous: things 0-79,
stuff 80-132) so the panoptic merge knows which categories to fuse.
See weights/convert_eomt_weights.py in the
LibreYOLO source repository.1from libreyolo import LibreYOLO
2
3model = LibreYOLO("LibreEoMTb-panoptic.pt")
4result = model.predict("image.jpg")[0]
5
6pan = result.panoptic # PanopticSegmentation
7seg_map = pan.data # (H, W) int segment-id map; 0 = void
8for segment in pan.segments_info: # id, category_id, isthing, score
9 name = result.names[segment["category_id"]]
10 print(segment["id"], name, "thing" if segment["isthing"] else "stuff")pip install "libreyolo[eomt]"model.val() is not implemented
yet; COCO-panoptic is not redistributed here.