(一)Autoencoders and Sparsity章节公式错误:

s2 应为 s3。
意为从第2层(隐藏层)i节点到输出层j节点的误差加权和。
(二)Support functions for loading MNIST in Matlab文件名错误
% Change the filenames if you've saved the files under different names % On some platforms, the files might be saved as % train-images.idx3-ubyte / train-labels.idx1-ubyte images = loadMNISTImages('train-images-idx3-ubyte'); labels = loadMNISTLabels('train-labels-idx1-ubyte'); % We are using display_network from the autoencoder code display_network(images(:,1:100)); % Show the first 100 images disp(labels(1:10));
应为
images = loadMNISTImages('train-images.idx3-ubyte'); labels = loadMNISTLabels('train-labels.idx1-ubyte');
本文纠正了Autoencoder公式中的错误,并修正了MNIST数据集加载脚本中的文件名,确保研究者能准确地复现实验。
1484

被折叠的 条评论
为什么被折叠?



