ProCA icon indicating copy to clipboard operation
ProCA copied to clipboard

[ECCV 2022] Prototypical Contrast Adaptation for Domain Adaptive Semantic Segmentation

Results 4 ProCA issues
Sort by recently updated
recently updated
newest added

line 142 in test.py: "pred = pred.cpu().numpy().squeeze().argmax(0)" should change to "pred = pred.squeeze().argmax(0).cpu().numpy()".

Hi, author! In 'pseudo_label.py' line 191, pred_label[(pred_max < thres_const[i]) * (pred_label == i)] = 255. I think it shoule be 'pred_max > thres_const[i]' to implement pixel $i$'s probability > threshold[i],...

Thank you very much, your code is so nice. but i don't access the this "Inference Using Pretrained Model (1) SYNTHIA -> Cityscapes (2) GTAV -> Cityscapes " can you...

I didn't find an implementation of mixed updating. Where is m defined and used?