facebookresearch / detectron2

Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.
https://detectron2.readthedocs.io/en/latest/
Apache License 2.0
29.3k stars 7.32k forks source link

data: common: MapDataset: Fix `random.sample()` usage for Python 3.11 #5301

Open Jmennius opened 4 weeks ago

Jmennius commented 4 weeks ago

Sampling from a set has been deprecated since Python 3.9 and was removed in 3.11. Fix buy converting the set to a list before passing it to sample() (this is essentially what sample() was doing internally before).