junyanz / CycleGAN

Software that can generate photos from paintings, turn horses into zebras, perform style transfer, and more.
Other
12.34k stars 1.94k forks source link

How to use cycleGAN to train on my own dataset ? #100

Closed ghost closed 5 years ago

ghost commented 6 years ago

Hi, I'm very new to this. What is the use of putting the comman --name and --model while running the command line ? secondly How to use cycleGAN to train on my own dataset ?

junyanz commented 6 years ago

--name is the experiment name. --model indicates which learning method to use (e.g., 'cycle_gan', 'pix2pix'). Please check out the options.lua for more details. See here for how to train on your own dataset. You may also want to use our PyTorch code if you prefer python over Lua.

ghost commented 5 years ago

Thanks :)