myCNN (stands for "my Convolutional Neural Network") is a Matlab implementation of convolutional neural network (CNN).The first CNN appeared in the work of Fukushima in 1980 and was called Neocognitron. The basic architectural ideas behind the CNN (local receptive fields, shared weights, and spatial or temporal subsampling) allow such networks to achieve some degree of shift and deformation invariance and at the same time reduce the number of training parameters. Since 1989, Yann LeCun and co-workers have introduced a series of CNNs with the general name LeNet, which contrary to the Neocognitron use supervised training. In this case, the major advantage is that the whole network is optimized for the given task, making this approach useable for real-world applications. LeNet has been successfully applied to character recognition, generic object recognition, face detection and pose estimation, obstacle avoidance in an autonomous robot etc. myCNN class allows to create, train and test generic convolutional networks (e.g., LeNet) as well as more general networks with features:
The archive contains the myCNN class source (with comments) and a few simple examples use of myCNN class. For proper training, the some examples need the MNIST dataset, which can be directly downloaded from Yann LeCun's website or, in Matlab format, from here (train data) and here (test data).
Changelog:2009-09-28-14-30 myCNN-0.07
2009-09-28-14-30 myCNN-0.06
2009-09-07-22-54 myCNN-0.02
|

