03 2013 档案

摘要:Latex 一些技巧:1. 如何创建不浮动的的 figure 和 table\makeatletter\newcommand{\figcaption}{\def\@captype{figure}\caption}\newcommand{\tabcaption}{\def\@captype{table}\caption}\makeatother\begin{center}\includegraphics[width=0.8\textwidth]{exp2/mpi_time_size.eps}\\\figcaption{MPI 实现高斯消元计算行列式的程序运行时间与矩阵大小变化关系}\label{ 阅读全文
posted @ 2013-03-25 18:35 悟净 阅读(4444) 评论(0) 推荐(0)
摘要:今天做了一下 Stanford CS294A 的一个 programming assignment: sparse autoencoder因为之前做过 Andrew Ng 的 ml online class 的 neural network 那节的作业,所以这个实现起来就很 easy 了。直接贴代码(all vectorized): 1 [d m] = size(data); 2 3 %% forward pass for all exampes 4 Z2 = W1 * data + repmat(b1, 1, m); % [hiddenSize*visibleSize] * [visib.. 阅读全文
posted @ 2013-03-24 14:58 悟净 阅读(621) 评论(0) 推荐(0)