williamium3000 / diverse-cotraining

Office implementation of Diverse Co-training (ICCV2023)
10 stars 0 forks source link

Problems I encountered when I tried to reproduce the model #1

Closed syqisme closed 10 months ago

syqisme commented 11 months ago

Hello, in the process of trying to reproduce the model in the paper, I found that the miou result obtained by using the branch of segformer was always higher than the branch of resnet101, about 2 percentage points higher. Would you like to ask whether the result in the paper shows the branch of resnet? And how do I solve the problem of unifying the results of the two branches?

williamium3000 commented 11 months ago

Hi, we report the highest of all co-trained models. We observe that in some settings, ResNet is higher than transformer. There are no effective solutions to unifying the results of the two branches, one of the possible ways is to use better CNN branches with higher performance. For instance, one can use ResNeSt backbone or convnext. One can also use better segmentation head to close up the gap.

syqisme commented 11 months ago

Your reply has solved my confusion. Thank you very much!