crywang/RFM

issue of Xception

Closed this issue · 2 comments

Thank you for sharing your source code. I tried running the source code and had an issue. It seems there is something wrong with the line '' model = eval(modelname)(num_classes=2).cuda()'' . Is the definition of the Xception correct in the source code?
Selection_019

You can try changing the code to eval(modelname)(num_classes=2, pretrained=False).cuda().

Thank you for your answer.