yuntaodu / PS_code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why set the dis_loss to 0?

LKKHI opened this issue · comments

        dis_loss1 = netD(source_features,source=True)
        dis_loss2 = netD(target_features,source=False)
        dis_loss3 = netD(source_features1,source=True)
        dis_loss = dis_loss1+dis_loss2+dis_loss3
        total_loss+=0*dis_loss

Thanks for pointing out this issue, setting hyper-parameter as 0 is used for ablation. We would fix this with suitable hyper-parameters