神经网络向量化

From Ufldl

Jump to: navigation, search
Line 60: Line 60:
<syntaxhighlight>
<syntaxhighlight>
-
% 正向传导的向量化实现
+
% 正向传播的向量化实现
z2 = W1 * x + repmat(b1,1,m);
z2 = W1 * x + repmat(b1,1,m);
a2 = f(z2);
a2 = f(z2);

Revision as of 14:16, 16 March 2013

Personal tools