Petr Masopust

Results 12 comments of Petr Masopust

Method calc_iou in losses.py sometimes creates HUGE tensors. You have to compute tensors partially: ``` def calc_iou(a, b): step = 20 IoU = torch.zeros((len(a), len(b))).cuda() step_count = int(len(b) / step)...