Skip to content

Commit

Permalink
fix silly syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Nov 27, 2018
1 parent f8858e2 commit 75bc90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lenskit/algorithms/als.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _train_matrix(mat: CSR, other: np.ndarray, reg: float):
return result


0@njit(parallel=True, nogil=True)
@njit(parallel=True, nogil=True)
def _train_implicit_matrix(mat: CSR, other: np.ndarray, reg: float, weight: float):
"One half of an implicit ALS training round."
nr = mat.nrows
Expand Down

0 comments on commit 75bc90b

Please sign in to comment.