Sunway-s
Results
1
issues of
Sunway-s
``` # Count the number of predictions that are NOT "no-object" (which is the last class) card_pred = (pred_logits.argmax(-1) != pred_logits.shape[-1] - 1).sum(1) ``` https://github.com/IDEACVR/DINO/blob/67bbcd97ef30a48cf343b7b0f3ad9ea0795b6fcd/models/dino/dino.py#L393 注意到这里的最后一个类代表“no-object”,这似乎与 ``` target_classes = torch.full(src_logits.shape[:2],...