xen87348 commited on
Commit
c3f36d5
·
verified ·
1 Parent(s): 56b5d8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ class GANGenerator(torch.nn.Module):
13
  input_dim = latent_dim + embed_dim * 3
14
 
15
  # Output: 3 color channels * 256 * 256 image size
16
- self.output_pixels = 3 * 256 * 256
17
  self.fc = torch.nn.Linear(input_dim, self.output_pixels)
18
  self.latent_dim = latent_dim
19
 
 
13
  input_dim = latent_dim + embed_dim * 3
14
 
15
  # Output: 3 color channels * 256 * 256 image size
16
+ self.output_pixels = 3 * 128 * 128
17
  self.fc = torch.nn.Linear(input_dim, self.output_pixels)
18
  self.latent_dim = latent_dim
19