myCNN

版本 1.4.0.0 (1.1 MB) 作者: Nikolay Chumerin
myCNN is a Matlab implementation of convolutional neural network (CNN).
11.3K 次下载
更新时间 2009/9/30

查看许可证

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:
- any directed acyclic graph can be used for connecting the layers of the network;
- the network can have any number of arbitrarily sized input and output layers;
- the neuron’s receptive field (RF) can have an arbitrary stride (step of local RF tiling), which means that in the S-layer, RFs can overlap and in the C-layer the stride can differ from 1;
- any layer or feature map of the network can be switched from trainable to nontrainable (and vice versa) mode even during the training;
- a new layer type: softmax-like M-layer.
The archive contains the myCNN class source (with comments) and a simple example of LeNet5 creation and training.

All updates and new releases can be found here: http://sites.google.com/site/chumerin/projects/mycnn

引用格式

Nikolay Chumerin (2024). myCNN (https://www.mathworks.com/matlabcentral/fileexchange/25247-mycnn), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2006a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.4.0.0

- a graphical demo (demo_myCNN) added (thanks to Mikhail Sitotenko, submission 24291)
- an example of pretrained network (myLeNet5-example.mat) added
- the myCNN constructor is fixed (loading from file)

1.3.0.0

- the first attempt to make the M-layer trainable
- a new private functions unfold.m and unfold2.m added
- soft_max now suppots n-dimensional array (not only 2D and 3D)
- improved myCNN object description

1.2.0.0

see ChangeLog inside the archive.

1.1.0.0

- fixed some bugs related to system dependencies;
- added ChangeLog and content.m;
- more comments in the example.

1.0.0.0