You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 2, 2018. It is now read-only.
Running scripts/train_cifar.lua with default parameters generates the attached images at different epochs (I changed the checkpoint-saving part to append the epoch number). What may be wrong?
Here is the code I used for generation:
l = torch.load("adversarial-" .. e .. ".net")
i = torch.CudaTensor(42, 100):uniform(-1,1)
l.G:cuda()
l.G:evaluate()
o = l.G:forward(i)
img = image.toDisplayTensor(o)
image.save("gen-" .. e .. ".png", img)