Q-bert commited on
Commit
7994223
1 Parent(s): 196ed09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ class Generator(nn.Module):
8
  def __init__(self):
9
  super(Generator, self).__init__()
10
  self.model = nn.Sequential(
11
- nn.Linear(z_dim, 256),
12
  nn.LeakyReLU(0.2),
13
  nn.Linear(256, 512),
14
  nn.LeakyReLU(0.2),
 
8
  def __init__(self):
9
  super(Generator, self).__init__()
10
  self.model = nn.Sequential(
11
+ nn.Linear(13, 256),
12
  nn.LeakyReLU(0.2),
13
  nn.Linear(256, 512),
14
  nn.LeakyReLU(0.2),