# LeNet **Repository Path**: wang_zhang_fei/LeNet ## Basic Information - **Project Name**: LeNet - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-10 - **Last Updated**: 2021-04-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LeNet Implement the LeNet using tensorflow to recognize handwritten number. Training with MNIST. Some modifications here 1. Training with MNIST set with image size 28 * 28. To match the size of LeNet, the first convolution layer applied padding. 2. Using Relu instead of Sigmod as activation function. 3. Applied dropout in the FC layer. This net can get 99.1% correct rate on MNIST test set.