Open Shichang-Fu opened 4 months ago
@henrenzhenhenrenzhenderen @mecarill I am curious about how long does it usually take to complete the training under the Cityscapes→FoggyCityscapes setting? While attempting to execute the traning command, I observed that it took around 2 days to run on 4 NVIDIA RTX 3090s. Are you in the same situation as me?
@henrenzhenhenrenzhenderen @mecarill I am curious about how long does it usually take to complete the training under the Cityscapes→FoggyCityscapes setting? While attempting to execute the traning command, I observed that it took around 2 days to run on 4 NVIDIA RTX 3090s. Are you in the same situation as me?
I did not train Cityscapes→FoggyCityscapes, but other non-benchmark datasets
I encountered a problem in calculating the cross entropy loss_cls when reproducing the code: ` Expected object of scalar type Long but got scalar type Float for argument #2 ‘target`` My solution:
Add in cat/modeling/roi_heads/fast_rcnn.py547 line:
gt_oht_classes = torch.argmax(gt_oht_classes, dim=1)
`gt_oht_classes = torch.argmax(gt_oht_classes, dim=1) losses = {
"loss_cls": cross_entropy(scores, gt_classes, reduction="mean"),