Contractive_Autoencoder_in_Pytorch icon indicating copy to clipboard operation
Contractive_Autoencoder_in_Pytorch copied to clipboard

Pytorch implementation of contractive autoencoder on MNIST dataset

Results 1 Contractive_Autoencoder_in_Pytorch issues
Sort by recently updated
recently updated
newest added

The CAE class uses the relu nonlinearity. https://github.com/avijit9/Contractive_Autoencoder_in_Pytorch/blob/master/CAE_pytorch.py#L61 However, the way the CAE loss is computed is only valid for sigmoid activations. This is easy enough to show: the derivative...