Skip to content

Commit 76c1eae

Browse files
committed
Merge pull request lisa-lab#107 from bamos/patch-1
Fix minor typo.
2 parents b89282c + b9a1e48 commit 76c1eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/logistic_sgd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(self, input, n_in, n_out):
8181
name='W',
8282
borrow=True
8383
)
84-
# initialize the baises b as a vector of n_out 0s
84+
# initialize the biases b as a vector of n_out 0s
8585
self.b = theano.shared(
8686
value=numpy.zeros(
8787
(n_out,),

0 commit comments

Comments
 (0)