Skip to content

Commit 8daa87c

Browse files
committed
Update cyclegan.ipynb
1 parent c8f6fe1 commit 8daa87c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Ch09_GAN/ec09_C_cyclegan/cyclegan.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,9 +432,9 @@
432432
" axs[0, 1].axis(\"off\")\n",
433433
"\n",
434434
" img_H_in = image_H[0].permute(1, 2, 0).cpu().detach().numpy()\n",
435-
" axs[0, 0].imshow(img_H_in, cmap=\"gray\")\n",
436-
" axs[0, 0].set_title(\"Input: Holography\", fontsize=8)\n",
437-
" axs[0, 0].axis(\"off\")\n",
435+
" axs[1, 0].imshow(img_H_in, cmap=\"gray\")\n",
436+
" axs[1, 0].set_title(\"Input: Holography\", fontsize=8)\n",
437+
" axs[1, 0].axis(\"off\")\n",
438438
"\n",
439439
" img_B_out = fake_image_B[0].permute(1, 2, 0).cpu().detach().numpy()\n",
440440
" img_B_out = (((img_B_out * 0.5) + 0.5) * 255.0).astype(np.uint8)\n",

0 commit comments

Comments
 (0)