January 2018
Intermediate to advanced
474 pages
10h 23m
English
As you learned in the first section of this chapter, denoising autoencoders can be used to train the models such that they are able to remove the noise from the images input to the trained model:
def add_noise(X): return X + 0.5 * np.random.randn(X.shape[0],X.shape[1])
test_images_noisy = add_noise(test_images)
We will use these test images to test the output from our denoising model examples.
Read now
Unlock full access