phillipi / pix2pix

Image-to-image translation with conditional adversarial nets

Home Page:https://phillipi.github.io/pix2pix/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can i change the input of discrime-net ?

px4869 opened this issue · comments

from the original code, the input of the discrime-net is torch.cat((img, fake_target), 1), where img is the condition img, and fake_target is the target image or the output of the generate-net, can i change torch.cat((img, fake_target), 1) to torch.cat((fake_target, img,), 1)?