You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
p4w2aybsf b7aab54e9c
Add 'simple_convnet.py'
4 years ago
README.md Add 'README.md' 4 years ago
deep_convnet.py 4 years ago
mnist_cnn_gui_main.py 4 years ago
simple_convnet.py Add 'simple_convnet.py' 4 years ago
train_convnet.py Add 'train_convnet.py' 4 years ago
train_deepnet.py Add 'train_deepnet.py' 4 years ago

README.md

纯Python实现CNN识别手写体数字+GUI


由于把数据集也传上来了,导致下载时间比较长,我打包了一份放在服务器,点击这里进行下载

项目文件结构如下所示

.
├── common
│   ├── functions.py
│   ├── gradient.py
│   ├── layers.py
│   ├── optimizer.py
│   ├── trainer.py
│   └── util.py
├── dataset
│   ├── mnist.pkl
│   ├── mnist.py
│   ├── t10k-images-idx3-ubyte.gz
│   ├── t10k-labels-idx1-ubyte.gz
│   ├── train-images-idx3-ubyte.gz
│   └── train-labels-idx1-ubyte.gz
├── deep_convnet_params.pkl
├── deep_convnet.py
├── mnist_cnn_gui_main.py
├── params.pkl
├── qt
│   ├── layout.py
│   ├── layout.ui
│   ├── paintboard.py
│   └── ui2py.sh
├── simple_convnet.py
├── train_convnet.py
└── train_deepnet.py