We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
multibox_loss.py -->num_neg = torch.clamp(self.negpos_ratio * num_pos, max=pos.size(1) - 1)
If positive is 0, negative is also 0, which hinders negative learning and causes over-detection. I think it is correct to set a fixed minimum value.