CNN - Convolutional neural network class
NOTE: Next versions of this library is hosted at https://bitbucket.org/intelligenceagent/cudacnn-public/wiki/Home
The reason is that now it's rather C++/CUDA library with Matlab front-end than a Matlab library.
This project provides matlab class for implementation of convolutional neural networks. This networks was developed by Yann LeCun and have sucessfully used in many practical applications, such as handwritten digits recognition, face detection, robot navigation and others (see references for more info). Because of some architectural features of convolutional networks, such as weight sharing it is imposible to implement it using Matlab Neural Network Toolbox without it's source modifications. That's why this class works almost independently from NN toolbox (coming soon full independence).
This release includes sample of handwritten digits recognition using CNN. If you just want to try it run cnet_tool. You'll see a simple GUI. It loads pretrained convolutional neural net from cnet.mat and recognizes image of digit either painted in painting area or downloaded from MNIST database.
Further information about the library can be found here:
https://sites.google.com/site/mihailsirotenko/projects/convolutional-neural-network-class
and here:
https://sites.google.com/site/mihailsirotenko/projects/cuda-cnn
Cite As
Mihail Sirotenko (2024). CNN - Convolutional neural network class (https://www.mathworks.com/matlabcentral/fileexchange/24291-cnn-convolutional-neural-network-class), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
- Image Processing and Computer Vision > Computer Vision Toolbox > Recognition, Object Detection, and Semantic Segmentation >
- AI and Statistics > Deep Learning Toolbox > Get Started with Deep Learning Toolbox >
Tags
Acknowledgements
Inspired: Raman Finder, myCNN
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
ver 0.83/
ver 0.83/@cnn/
Version | Published | Release Notes | |
---|---|---|---|
1.29.0.0 | readMNIST.m script improved to explicitly check if MNIST library is exist and located in MNIST folder. |
||
1.26.0.0 | Description changed: added the notice about future versions of library. |
||
1.25.0.0 | Matlab 2012a compatibility issues resolved. Dependency from NN toolbox removed. |
||
1.8.0.0 | Compatibility with Matlab 2010 issue fixed (Thanks to Silvio Filipe) |
||
1.6.0.0 | Fixed bug with extra output error in non-cuda training example |
||
1.5.0.0 | 1. Support of CUDA-accelerated simulation and training of convolutional neural networks;
|