Skip to content

Commit b9a1e48

Browse files
committed
Fix minor typo.
1 parent b89282c commit b9a1e48

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)