Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 *
|
| 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 |
|