项目作者: AnamorphicOptimus

项目描述 :
Multi-Classification on dataset of MNIST
高级语言: Python
项目地址: git://github.com/AnamorphicOptimus/BP-Network.git
创建时间: 2020-07-24T08:41:33Z
项目社区:https://github.com/AnamorphicOptimus/BP-Network

开源协议:

下载


BP-Network

Introduction

BP-Network is an experimental project that uses BP neural network as the core model to multi-classify MNIST handwritten digit sets. And I realized the construction of BP neural network and the improvement based on the source code through python.
Finally, the improved BP model will be compared with common machine learning and deep learning models, such as random forest and convolutional neural network, to make a comprehensive comparison of model effects and training time.

Improvement Details:

    1. Change the activation function from the commonly used sigmoid function to the Relu function
    1. Secondly, considering that the problem is actually a multi-classification problem, softmax is introduced as the output layer and cross entropy as the loss function
    1. Finally, batch processing is introduced, and the training set is divided into training batches for training, which improves the operating efficiency of the neural network.

Experimental Results

Model Test Acc Train Time (s)
BP 0.97540 35.71
Logistics 0.92030 105.76
SVM 0.94460 935.98
RF 0.94910 5.30
CNN 0.99200 245.98

Experimental Conclusions

In this experiment, the influence of parameter adjustment on the model effect and training time is discussed in detail

The following findings:

    1. It is found that the training time of the model is more sensitive to the number of iterations and the number of neurons in the hidden layer
    1. The number of hidden layers, the learning rate and the number of iterations have a greater impact on the training effect
    1. Compare improved BP model with common machine learning and deep learning models, such as random forest and convolutional neural network, in term of model effects and training time. The result shows that the improved BP neural network has outstanding performance in both aspects.

Contents

  1. .
  2. |-- CNN
  3. | |-- config.py
  4. | `-- mnist.py
  5. |-- bpNet // BP-Network Source Code
  6. | |-- Logit.py // a separate file for logit regression
  7. | |-- RandomForest.py // a separate file for random forest
  8. | |-- SVM.py // a separate file for SVM model
  9. | |-- bp
  10. | | |-- bpModel.py // BP layers integration
  11. | | |-- checkFile.py // check MNIST data
  12. | | |-- common
  13. | | | |-- functions.py
  14. | | | `-- layers.py
  15. | | `-- mnist.py // MNIST data class
  16. | `-- main.py // BP model run
  17. `-- README.md
  18. * 7 directories, 26 files

Operating Instructions

    1. ./bpNet/main.py: run this file for BP-Network model operation
    1. ./bpNet/Logit.py, RandomForest.py. SVM.py is for Logit regression, random forest model and SVM respectively
    1. ./CNN/mnist.py is for CNN model running