distillation-dcf
Results
2
issues of
distillation-dcf
Does any one train this pytorch cascade RCNN model on COCO dataset? What's your mAP? Could the mAP of this repo reach the level of official cascade RCNN version?
Hi! In `forward()` function of `model.py`, text loss and image loss is computed by ``` labels = torch.cat((text[:, 1:], image_input_ids), dim=1).contiguous().long() # shape: (bs, 127+1024=1151) loss_text = F.cross_entropy( text_logits, labels[:,...