chris1nexus
commited on
Commit
·
91badc5
1
Parent(s):
08743f7
Fix typo
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def pred_pipeline(img, transforms):
|
|
25 |
output_syn = real2sim(output_real)
|
26 |
out_img_real = make_grid(output_real,
|
27 |
nrow=1, normalize=True)
|
28 |
-
out_syn_real = make_grid(
|
29 |
nrow=1, normalize=True)
|
30 |
|
31 |
|
|
|
25 |
output_syn = real2sim(output_real)
|
26 |
out_img_real = make_grid(output_real,
|
27 |
nrow=1, normalize=True)
|
28 |
+
out_syn_real = make_grid(output_syn,
|
29 |
nrow=1, normalize=True)
|
30 |
|
31 |
|