stargan-v2
stargan-v2 copied to clipboard
After training, can I generate some images from input without eval?
After training, can I generate some images from input without eval? For example, specifying input .jpg or folder, in case I have only some cat images want to transfer to dogs.
Hi, You can use ‘—mode sample’ for that. Check this part in README.
@youngjung Thanks. But I asked it because using eval command, the result mixed the identity of persons. So, I wonder if there is command to generate i.e. male/female image from input image.
I am confused with your word "eval". Do you mean without "reference image"?
If yes, you can do that with https://github.com/clovaai/stargan-v2/blob/e28bdee908fdf3cb787cc2dfa3310d586e4b60ed/core/utils.py#L78
After training, I just want to generate output images from input images , without evaluation metrics and interpolation videos. So, which mode should I choose between eval and sample? Thank you so much.