glow-pytorch icon indicating copy to clipboard operation
glow-pytorch copied to clipboard

PyTorch implementation of Glow

Results 32 glow-pytorch issues
Sort by recently updated
recently updated
newest added

Hi! Great code, thanks for sharing. How can I use checkpoint files in order to continue training sessions after pausing? Eyal

```python if i == 0: with torch.no_grad(): log_p, logdet, _ = model.module( image + torch.rand_like(image) / n_bins ) continue else: log_p, logdet, _ = model(image + torch.rand_like(image) / n_bins) ````

Hi, given an input image tensor x and extracting the glow model i tried the following: latent = glow(x)[2] x_reconstructed = glow.reverse(latent) Since it is a normalizing flow one would...

Hi, thank you for this simple, beautiful code! I wanted to know if you've tried this with larger resolutions, as seen in the paper? Does it still work well? Thank...

I designed an coupling layer by mysefl. It is a bit sophisticated. During training, the value of loss and logP are not desirable. How it happens? maybe due to the...

When I set use affine coupling rather than additive coupling, training on cifar10, n_flow = 32, n_block = 3, the weights will rapidly become Nan, and sample s become all...

is there any pretrained models?

Hi, Thanks for your nice work! I am new to the glow model, so I have some stupid questions, and I don't solve them even if I try to google....