PyTorch-CycleGAN
PyTorch-CycleGAN copied to clipboard
A clean and readable Pytorch implementation of CycleGAN
w/o ReplayBuffer, is there any data/paper to support ReplayBuffer?
Hi Aitor. Thanks for the excellent code. I was trying to make some modifications and use CycleGAN for a project of mine. I am often running into memory issues which...
`In = 64` `out = in*2`
Could you please share your model? I don`t have a proper GPU.Thanks!
loss_D_real = criterion_GAN(pred_real, torch.ones_like(pred_real));i think this should be loss_D_real = criterion_GAN(pred_real, torch.zeros_like(pred_real))
I was under the impression that the optimizer and the generator should be training against stagnant counterparts but the step function on the generators are called before the gradients are...
I got loss as follows ``` ... 2018-10-27 Saturday 02:21:32 : Train Epoch: 1 [213/284 (75%)] loss_G: 13.778452 loss_G_identity: 4.409110 loss_G_GAN: 0.245768 loss_G_cycle: 9.123573 loss_D: 1.171054 2018-10-27 Saturday 02:21:33 :...