Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tanyachutani/denoising-convolution-auto-encoder

Keras implementation of denoising convolution auto encoder on mnist
https://github.com/tanyachutani/denoising-convolution-auto-encoder

autoencoder cnn deep-learning denoising-autoencoders keras keras-neural-networks mnist tensorflow

Last synced: 21 days ago
JSON representation

Keras implementation of denoising convolution auto encoder on mnist

Awesome Lists containing this project

README

        

# Denoising_ConvolutionAutoEncoder
Denoising Convolution AutoEncoder on mnist

## Data
Mnist dataset from keras.datasets

## Model
- Autoencoder, a deep neural network is implemented with Keras functional API.
- Input to model is noisy image and output is the same image without noise.
- Filter size is 16 followed by 32 and latent dimesion is 16 units.
- The loss function for training is mse.

## Result
You can download the pre-trained weights from here

https://drive.google.com/open?id=1KmnNJM29HADuNUIIM8MxNmDfkM9wTDgN

#### Input

![](https://github.com/TanyaChutani/Denoising_ConvolutionAutoEncoder/blob/master/noisyA.png)

#### Output

![](https://github.com/TanyaChutani/Denoising_ConvolutionAutoEncoder/blob/master/outputA.png)