Spaces:
Runtime error
Runtime error
lmoss
commited on
Commit
·
2444ae1
1
Parent(s):
a577b73
init
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ pl = pv.Plotter(shape=(1, 1),
|
|
18 |
window_size=(800, 800))
|
19 |
|
20 |
netG = DCGAN3D_G(64, 512, 1, 32, 1)
|
21 |
-
netG.load_state_dict(torch.load("
|
22 |
z = torch.randn(1, 512, 5, 5, 5)
|
23 |
with torch.no_grad():
|
24 |
X = netG(z)
|
|
|
18 |
window_size=(800, 800))
|
19 |
|
20 |
netG = DCGAN3D_G(64, 512, 1, 32, 1)
|
21 |
+
netG.load_state_dict(torch.load("berea_generator_epoch_24.pth"))
|
22 |
z = torch.randn(1, 512, 5, 5, 5)
|
23 |
with torch.no_grad():
|
24 |
X = netG(z)
|