Skip to content

Commit 88dfe8f

Browse files
committed
Merge pull request lisa-lab#126 from hankarun/master
greetingstxt pull request
2 parents f13b880 + 9f26cbc commit 88dfe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/gettingstarted.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ L2 regularization term weighted by :math:`\lambda_2`
525525
L1 = T.sum(abs(param))
526526

527527
# symbolic Theano variable that represents the squared L2 term
528-
L2_sqr = T.sum(param ** 2)
528+
L2 = T.sum(param ** 2)
529529

530530
# the loss
531531
loss = NLL + lambda_1 * L1 + lambda_2 * L2

0 commit comments

Comments
 (0)