上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
摘要: Exercise:Softmax Regression习题的链接:Exercise:Softmax RegressionsoftmaxCost.mfunction [cost, grad] = softmaxCost(theta, numClasses, inputSize, lambda, dat... 阅读全文
posted @ 2015-01-08 19:49 陆草纯 阅读(705) 评论(0) 推荐(0) 编辑
摘要: Exercise:PCA and Whitening习题链接:Exercise:PCA and Whiteningpca_gen.m%%================================================================%% Step 0a: Load d... 阅读全文
posted @ 2015-01-04 23:04 陆草纯 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Exercise:PCA in 2D习题的链接:Exercise:PCA in 2Dpca_2d.mclose all%%================================================================%% Step 0: Load data% We... 阅读全文
posted @ 2015-01-04 21:40 陆草纯 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Two Sum II - Input array is sortedGiven an array of integers that is alreadysorted in ascending order, find two numbers such that they add up to a spe... 阅读全文
posted @ 2015-01-02 23:08 陆草纯 阅读(5665) 评论(0) 推荐(0) 编辑
摘要: Binary Search Tree IteratorImplement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.Callin... 阅读全文
posted @ 2014-12-31 16:32 陆草纯 阅读(5160) 评论(1) 推荐(1) 编辑
摘要: Missing RangesGiven a sorted integer array where the range of elements are [lower, upper] inclusive, return its missing ranges.For example, given [0, ... 阅读全文
posted @ 2014-12-31 15:51 陆草纯 阅读(1686) 评论(2) 推荐(0) 编辑
摘要: Exercise:Vectorization习题的链接:Exercise:Vectorization注意点:MNIST图片的像素点已经经过归一化。如果再使用Exercise:Sparse Autoencoder中的sampleIMAGES.m进行归一化,将使得训练得到的可视化权值如下图:更改trai... 阅读全文
posted @ 2014-12-31 13:43 陆草纯 阅读(684) 评论(0) 推荐(0) 编辑
摘要: Exercise:Sparse Autoencoder习题的链接:Exercise:Sparse Autoencoder注意点:1、训练样本像素值需要归一化。因为输出层的激活函数是logistic函数,值域(0,1),如果训练样本每个像素点没有进行归一化,那将无法进行自编码。2、训练阶段,向量化实现... 阅读全文
posted @ 2014-12-30 16:21 陆草纯 阅读(1266) 评论(2) 推荐(0) 编辑
摘要: (一)Autoencoders and Sparsity章节公式错误:s2 应为 s3。意为从第2层(隐藏层)i节点到输出层j节点的误差加权和。(二)Support functions for loading MNIST in Matlab文件名错误% Change the filenames if... 阅读全文
posted @ 2014-12-30 15:02 陆草纯 阅读(340) 评论(0) 推荐(0) 编辑
摘要: Factorial Trailing ZeroesGiven an integern, return the number of trailing zeroes inn!.Note:Your solution should be in logarithmic time complexity.Cred... 阅读全文
posted @ 2014-12-30 12:47 陆草纯 阅读(9076) 评论(3) 推荐(3) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页