Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Benchmark : CNN with 3 Conv Layers - Accuracy 92.1% on FashionMNIST and 99.2% on MNIST #116

Closed
gchhablani opened this issue Jun 16, 2018 · 0 comments
Assignees

Comments

@gchhablani
Copy link
Contributor

gchhablani commented Jun 16, 2018

The model details are as follows:

  • No Preprocessing
  • The dataset is one-hot encoded
  • Trained using BCE Loss over a Softmax Output
  • The parameter initialization is Xavier Normal
  • The layers in sequence are:
  1. Convolutional layer with 16 feature maps of size 3 x 3
  2. BatchNorm layer followed by Swish activation.
  3. Max Pooling layer of size 2 x 2.
  4. Convolutional layer with 32 feature maps of size 3 x 3
  5. BatchNorm layer followed by Swish activation.
  6. Max Pooling layer of size 2 x 2.
  7. Convolutional layer with 64 feature maps of size 3 x 3
  8. BatchNorm layer followed by Swish activation.
  9. Max Pooling layer of size 2 x 2.
  10. Fully connected layer of size 10.
  11. Softmax Layer of size 10.

Accuracy achieved on Fashion MNIST Test Dataset is 92.1 %
Accuracy achieved on MNIST Test Dataset is 99.2% .
This network has been implemented in PyTorch. It uses the recent activation function - Swish which has been implemented in the code. The code can be found here.

@hanxiao hanxiao self-assigned this Jun 17, 2018
@gchhablani gchhablani changed the title Benchmark : CNN with 3 Layers - Accuracy 92.1% on FashionMNIST and 99.2% on MNIST Benchmark : CNN with 3 Conv Layers - Accuracy 92.1% on FashionMNIST and 99.3% on MNIST Jun 17, 2018
@gchhablani gchhablani changed the title Benchmark : CNN with 3 Conv Layers - Accuracy 92.1% on FashionMNIST and 99.3% on MNIST Benchmark : CNN with 3 Conv Layers - Accuracy 92.1% on FashionMNIST and 99.2% on MNIST Jun 17, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants