stylegan-t icon indicating copy to clipboard operation
stylegan-t copied to clipboard

[ICML'23] StyleGAN-T: Unlocking the Power of GANs for Fast Large-Scale Text-to-Image Synthesis

Results 13 stylegan-t issues
Sort by recently updated
recently updated
newest added

Is this project gonna be forbidden to be used for commercial purposes for free?

There seem to be aliasing issues with the resulting images. Which version was used for stylegan-t?

The mechanism for modulation in figure 3b is quite strange. Based on the below figure, I guess that the modulation style s multiply to the feature output from previous block...

Why divide by 'batch_size' when calculating GAN loss? > loss_gen = (F.relu(torch.ones_like(gen_logits) + gen_logits)).mean() / batch_size > loss_real = (F.relu(torch.ones_like(real_logits) - real_logits)).mean() / batch_size > loss_gen = (-gen_logits).mean() / batch_size...

Dear authors, Thanks for the amazing work. I'm reaching out to ask you an opinion about a problem I am currently facing. I am working with an architecture that is...

Hey. Is there any chance you have this dataset cached locally and can send it to me? https://huggingface.co/datasets/ChristophSchuhmann/improved_aesthetics_6plus I'm going to train miniSDXL (like lambdalabs/miniSD-diffusers, but for SDXL) and need...

Can you provide a link to the pre-trained model?. Thanks

Thanks for your great work. In Table 4 from the paper EMA is 0.9978, but in the code [generator.py line504](https://github.com/autonomousvision/stylegan-t/blob/36ab80ce76237fefe03e65e9b3161c040ae888e3/networks/generator.py#LL504) it's 0.995. Which is the actual value? Also the batch...

when I run the code in ubuntu, which has more than one gpu, it appeared the below error: (pytorch) m11113013@htsc-Server3:~/ProjectCode/MasterProject2$ python -m torch.distributed.run --standalone --nproc_per_node 1 train.py --outdir ./training-runs/ --cfg...