The discriminator loss function your used in paper us is" min(0,1-D_k(x))+ min(0,1+D_k(G(s,z)))" ,but u said in your paper it is hinge loss ,and u used the Relu method in your code. So I think it should be " max(0,1-D_k(x))+ max(0,1+D_k(G(s,z)))". Why is that
The discriminator loss function your used in paper us is" min(0,1-D_k(x))+ min(0,1+D_k(G(s,z)))" ,but u said in your paper it is hinge loss ,and u used the Relu method in your code. So I think it should be " max(0,1-D_k(x))+ max(0,1+D_k(G(s,z)))". Why is that
Maybe I am wrong QAQ