pytorch-lightning-vae
pytorch-lightning-vae copied to clipboard
VAE for color images
Changing it to just `0.2.5` in `requirements.txt` fixes it.
When I try to run the VAE code I get this error: ```pytb --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /tmp/ipykernel_2476/1748225191.py in 4 vae = VAE() 5 trainer = pl.Trainer(gpus=1,...
As soon as the first epoch completes training, I am getting this error. I think it is due to some changes in the updated library, as I am getting the...
When running from pl_bolts.models.autoencoders.components import resnet18_decoder,resnet18_encoder Python just terminates with no message... weird.
Hi, thanks for your great job! I have modeled each parameter out of the decoder as a gaussian in my dataset. although I got high-quality reconstruct mages, however, the reconstruct...
I found the value of loss became negtive when training the model in my dataset.I hope you can give me a help
Hello William, This is a very good code, the only issue is that initially, we were not able to train on our dataset but after reading the VAE paper, we...
Hi William, I am following your script to build cifar10 model, I checked the image after 20 epochs, which is not as good as the one, not sure if you...
p = torch.distributions.Normal(torch.zeros_like(rand_v), torch.zeros_like(rand_v)) should be ones_like for variance