yunjey / stargan

StarGAN - Official PyTorch Implementation (CVPR 2018)
MIT License
5.21k stars 967 forks source link

[Question] Mask vector in this paper #132

Open YoonSungLee opened 3 years ago

YoonSungLee commented 3 years ago

Thank you for your paper! I have a question about this paper.

In the paper, It introduces multi-dataset and multi-domain I2I translation with CelebA and RaFD dataset. StarGAN takes the mask vector to create the desired domain for a particular dataset. Then, what should I do if I want to create a domain that corresponds to two datasets at the same time? For example, when I try to create an image with CelebA = [1, 0, 0, 1, 1] and RaFD = [0, 0, 1, 0, 0], can't I do it at the same time because of the mask vector? Do I have to proceed sequentially?

Thank you!!