8000 GitHub - jiamiya/mnist_tutorial: A tutorial for MNIST handwritten digit classification using sklearn, PyTorch and Keras.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A tutorial for MNIST handwritten digit classification using sklearn, PyTorch and Keras.

Notifications You must be signed in to change notification settings

jiamiya/mnist_tutorial

 
 

Repository files navigation

accuracy list

question training accuracy testing accuracy
Q1 97.52 88.20
Q2 81.75 81.70
Q3 98.02 86.10
Q4 90.77 89.00
Q5 99.68 99.19

网络架构

使用LeNet网络架构 (reference:https://github.com/zergtant/pytorch-handbook/blob/master/chapter3/3.2-mnist.ipynb) (28,28) (convolution)-> (6, 24 , 24) (maxpooling) ->(6, 12, 12) (convolution) ->(16, 8, 8) (maxpooling) ->(16, 4, 4) (reshape) ->(256) (fuly connect) ->(120) (fuly connect) ->(84) (fuly connect) ->(10) (fuly connect)

About

A tutorial for MNIST handwritten digit classification using sklearn, PyTorch and Keras.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%
0