Nicolas Berger
Nicolas Berger
Hello, I will give a try this week, inspired from the COCO implementation: https://github.com/cocodataset/panopticapi/blob/master/panopticapi/evaluation.py Any preliminary comments are most welcome, especially on the signature that the methods should have. In...
Regarding the spirit of implementation to adopt I do have a few question since it is my first contribution to PL. - Should the metric return a single float (the...
Answer from @justusschock on Discord, transcribed here for visibility : Regarding your questions: - Metrics (after the full computation i.e after compute has been called) usually return a single float/scalar...
It seems the `SamAutomaticMaskGenerator` does a lot of deep copy in [MaskData.cat](https://github.com/facebookresearch/segment-anything/blob/6fdee8f2727f4506cfbbe553e23b895e27956588/segment_anything/utils/amg.py#L59) that cause most of the slowdown. Apparently these deep copies could be avoided since every time this method...