wanghuanphd / MDvsFA_cGAN

The tensorflow and pytorch implementations of the MDvsFA_cGAN model which is proposed in ICCV2019 paper "Huan Wang, Luping Zhou and Lei Wang. Miss Detection vs. False Alarm: Adversarial Learing for Small Object Segmentation in Infrared Images. International Conference on Computer Vision, Oct.27-Nov.2,2019. Seoul, Republic of Korea".
108 stars 27 forks source link

代码细节上的疑问 #11

Open ji-jessica opened 11 months ago

ji-jessica commented 11 months ago

在代码的443-444行: for r in optimizer_g2.param_groups: r['lr'] = 0.2 想请问一下这句中您原本的意思是否是 for r in optimizer_d.param_groups: r['lr'] = 0.2? 因为如果按现在您代码的书写方式,则在此处您对g2的学习率进行了两遍*=0.2,却没有对D的学习率进行修改 屏幕截图 2023-12-06 101135

CPaul33 commented 3 months ago

我也发现了这个问题,这里应该是错的,要改成d