Ianmcmill
Ianmcmill
Libraries are all in the repo *facepalm but I still cannot compile. Get the same error. Sorry for digging up this obsolete firmware version.
I think I understood this. Training images are the images you train on. obviously. This dataset consists of HR respectivly gaussian downsampled images (LR). Validation images are images of the...
Could someone share their code to generate images? I tried the snippet in the README but I have some problems with the dictionary structure. This is the error with the...
> > > @akanimax @jiwidi > I think GTX 1080 Ti with 11 GB memory still can't support to train on my custom dataset. > 😞 > I will try...
Tried this ``` import torch as th import pro_gan_pytorch.PRO_GAN as pg import matplotlib.pyplot as plt device = th.device("cuda" if th.cuda.is_available() else "cpu") gen = th.nn.DataParallel(pg.Generator(depth=6, latent_size=256)) # gen = pg.Generator(depth=6,...
Also when testing demo.py from https://github.com/akanimax/pro_gan_pytorch and modifying `gen = th.nn.DataParallel(pg.Generator(depth=5, latent_size=256))` I get the unexpected keys error. Why does it work on your machine and why is it not...
I started a test training with just one epoch. I tried to remove multi GPU support and therefore commented the DataParallel in PRO_GAN.py ``` # if code is to be...
I managed to get it generating. 1. The latent animation demo In demo.py from progan_pytorch I changed the following and made some comments ``` depth = 3 num_points = 10...
@akanimax No problem. The code for generating single images from a trained model is not very convenient. However this is what my knowledge in Python allowed me to do. Adding...
@panovr `RuntimeError: cuDNN error: CUDNN_STATUS_BAD_PARAM` This occurs when the `img_dims:` mismatch `depth` set in your config. Example: Error: ``` img_dims: - 128 - 128 depth: 7 ``` Correct: ``` img_dims:...