PyTorch-CIFAR-10-autoencoder icon indicating copy to clipboard operation
PyTorch-CIFAR-10-autoencoder copied to clipboard

This is a reimplementation of the blog post "Building Autoencoders in Keras". Instead of using MNIST, this project uses CIFAR10.

Results 1 PyTorch-CIFAR-10-autoencoder issues
Sort by recently updated
recently updated
newest added

The pre-trained model weights could not be loaded to the current model definition. I changed the model to ``` self.encoder = nn.Sequential( nn.Conv2d(3, 32, 4, stride=2, padding=1), # [batch, 12,...