Skip to content

Commit 061a8b5

Browse files
authored
Update autoencoder.ipynb
Changed the code from encoded_imgs = autoencoder.encoder(x_test).numpy() to encoded_imgs = autoencoder.encoder(x_test_noisy).numpy() Fixes #53357
1 parent 4d0be22 commit 061a8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/generative/autoencoder.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@
492492
},
493493
"outputs": [],
494494
"source": [
495-
"encoded_imgs = autoencoder.encoder(x_test).numpy()\n",
495+
"encoded_imgs = autoencoder.encoder(x_test_noisy).numpy()\n",
496496
"decoded_imgs = autoencoder.decoder(encoded_imgs).numpy()"
497497
]
498498
},

0 commit comments

Comments
 (0)