progressive-gan-pytorch icon indicating copy to clipboard operation
progressive-gan-pytorch copied to clipboard

Implemetatin of Progressive Growing of GANs in PyTorch

Results 6 progressive-gan-pytorch issues
Sort by recently updated
recently updated
newest added

Thanks for your nice and clean work! When I tried to understand your code, I found that ``` b_size = real_image.size(0) real_image = real_image.to(device) label = label.to(device) real_predict = encoder(...

안녕하세요, @rosinality 님 공개해주신 코드 덕분에 공부하는데 있어 많은 도움을 받고있습니다 코드 리뷰 중, 이해가 잘 가지 않는 부분이 있어 질문드립니다 train.py [144](https://github.com/rosinality/progressive-gan-pytorch/blob/672f27ef154944284ee6077c856fb98671ae0bea/train.py#L144), [152](https://github.com/rosinality/progressive-gan-pytorch/blob/672f27ef154944284ee6077c856fb98671ae0bea/train.py#L152) line에서 real_predict.backward(Tensor(-1.0)) fake_predict.backward(Tensor(1.0)) backward 뒤에 gradient값이...

Hi @rosinality, Thank you for writing this code, and sorry to open an issue on such an old repository, but I was hoping to ask you a question about generating...

Hi, thanks for your efforts! I was wondering where I should change to adapt the current model to a generation for 256 resolution? Appreciate your reply in advance.

Thank you for grate work !! I would appreciate it if you could open pre-trained model

First of all, thanks for sharing! Very interesting. I see that you experimented with SpectralNorm as well, can you share your insights on the effect it had on the training...