Dreamer312
Results
2
comments of
Dreamer312
同样的问题,coco的数据加载会过滤 左上角大于等于右下角的box,导致一些box被删除了。但是relation里面box的索引还在,就导致了cuda的越界警告。使用作者目前给的标注会有这个问题。
keep = (boxes[:, 3] > boxes[:, 1]) & (boxes[:, 2] > boxes[:, 0])这里把一些box删了,很奇怪,至少现在我直接clone你的代码不改的情况下,open image是跑不起来的 `class ConvertCocoPolysToMask(object): def __init__(self, return_masks=False): self.return_masks = return_masks def __call__(self, image, target): w, h = image.size...