MINIST 手写数字识别 MATLAB仿真


使用matlab实现的对MNIST手写数字进行识别,经测试,真实可用的。
资源截图
代码片段和文件信息
function res = back_conv2(FMeKtype)
%back_conv2 back convolution. Function can be used in two cases - backpropagate error  
%   for lower layers and calculate gradient
%
%  Syntax
%  
%    res = back_conv2(FMeKtype)
%    
%  Description
%   Input:
%    FM - feature map
%    e - error map
%    K - shared weights (convolution kernel)
%    type - type of operation (gx - for gradient calculation err - for error calculation)
%   Output:
%    res - result of computation
%
%(c) Sirotenko Mikhail 2009

switch(type)
    case ‘gx‘   %Calculate gradient
          res = fastFilter2(eFM‘valid‘); 

    case ‘err‘ %Error backpropagation
          res = conv2(eK‘full‘);
end

end
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1316  2014-02-12 14:10  MNIST手写数字识别license.txt

     文件       3853  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnnadapt_dw.m

     文件       5111  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncalchx.m

     文件       5946  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncalcje.m

     文件        710  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncalcMCR.m

     文件       2250  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncheck_finit_dif.m

     文件       7186  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncnn.m

     文件        973  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncnn_size.m

     文件       7409  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnncutrain.m

     文件       3873  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnninit.m

     文件       2967  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnnsim.m

     文件       8998  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnnsubsasgn.m

     文件       1708  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnnsubsref.m

     文件       6770  2014-02-12 14:10  MNIST手写数字识别ver 0.83@cnn rain.m

     文件        716  2014-02-12 14:10  MNIST手写数字识别ver 0.83ack_conv2.m

     文件       1054  2014-02-12 14:10  MNIST手写数字识别ver 0.83ack_subsample.m

     文件       1123  2014-02-12 14:10  MNIST手写数字识别ver 0.83changelog.txt

     文件       1005  2014-02-12 14:10  MNIST手写数字识别ver 0.83changelog.txt~

     文件     570755  2014-02-12 14:10  MNIST手写数字识别ver 0.83cnet.mat

     文件      23102  2014-02-12 14:10  MNIST手写数字识别ver 0.83cnet_tool.m

     文件       1005  2014-02-12 14:10  MNIST手写数字识别ver 0.83cnn2singlestruct.m

     文件       9952  2014-02-12 14:10  MNIST手写数字识别ver 0.83cnn_gui.fig

     文件      12131  2014-02-12 14:10  MNIST手写数字识别ver 0.83cnn_gui.m

     文件        712  2014-02-12 14:10  MNIST手写数字识别ver 0.83cucalcMCR.m

     文件       5471  2014-02-12 14:10  MNIST手写数字识别ver 0.83cutrain_cnn.m

     文件        128  2014-02-12 14:10  MNIST手写数字识别ver 0.83fastFilter2.m

     文件       1337  2014-02-12 14:10  MNIST手写数字识别ver 0.83license.txt~

     文件        819  2014-02-12 14:10  MNIST手写数字识别ver 0.83mse.m

     文件       1112  2014-02-12 14:10  MNIST手写数字识别ver 0.83preproc_data.m

     文件        412  2014-02-12 14:10  MNIST手写数字识别ver 0.83preproc_image.m

............此处省略18个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)