/CUDA-CNN

CNN accelerated by cuda. Test on mnist and finilly get 99.76%

Primary LanguageCuda

CUDA-CNN

Document

  1. Overlap Data Transfers in CUDA

Functions

CNN accelerated by cuda.
The start-of-art result's of popular datasets

  1. Test on mnist and get 99.76%, after voting(99.82%) (best 99.79%)
  2. Test on cifar-10 and get 81.38% (best 90%)
  3. Test on cifar-100 and get 51.13% (best 65%)

Feature

  1. Use DropConnnect to train the NetWork
  2. Support checkpoint, the program will save the best test result and save the network weight in the file "Result/checkPoint.txt", If the program exit accidentally, you can continue the program form this checkpoint.
  3. Translate the data set of mnist, including scale, rotate, distortion.
  4. The log will be saved in the file "Result/log.txt".
  5. In the convolutional layers, you can chose combine feature maps, according to "notes on Convolutional Neural NetWorks"

Compile

Depend on opencv and cuda
You can compile the code on windows or linux.
###SDK path

  • linux: /usr/local/cuda/samples/common/inc/ (For include file "helper_cuda")
  • windows: X:/Program Files (x86) /NVIDIA Corporation/CUDA Samples/v6.5/common/inc (For include file "helper_cuda")

###Library search path(-L)

  • linux: /usr/local/lib/
  • windows: X:/Program Files/opencv/vs2010/install/x86/cv10/lib (Depend on situation)

###libraries(-l)

  • opencv_core
  • opencv_highgui
  • opencv_imgproc
  • opencv_imgcodecs (need for opencv3.0)
  • cublas
  • curand

###GPU compute

  • capability 2.0

###Windows

  1. Install vs2010.
  2. Download and install opencv-2.4 or other higher versions
  3. Download and install cuda-5.0 or other higher versions
  4. When you create a new project using VS2010, You can find NVIDIA-CUDA project template, create a cuda-project.
  5. Add the "include path" and "lib path" to the project

###Linux

  1. Install opencv and cuda
  2. Start the nsight from cuda
  3. Create an 'empty cuda' project and import the clone code
  4. Add the "include path" and "lib path" to the project

Config

  1. CIFAR10
  2. MNIST
  3. CIFAR100

Informations