For more presentations please visit: https://www.bilibili.com/video/BV127411b7hK
Prerequisites
- Python3 (Tested in Python 3.8.10)
- Pip
- Venv
- Create a Python virtual environment (Optional)
$ python3 -m venv venv
$ source venv/bin/activate
- Install the required packages
$ pip install -r requirements.txt
- Run the main GUI
$ python ./mnist_cnn_gui_main.py
You can modify the network structure in
mnist_cnn_gui_main.py
file, and two networks are provided by default.
Train Simple CNN:
$ python ./train_convnet.py
Train Deep CNN:
$ python ./train_deepnet.py
- 《深度学习入门-基于Python的理论与实现》