Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tqtg committed Nov 22, 2023
1 parent 8f44066 commit e510e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cornac/models/mf/recom_mf.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def __init__(
self.learning_rate = learning_rate
self.batch_size = batch_size
self.lambda_reg = lambda_reg
self.droppout = dropout
self.dropout = dropout
self.use_bias = use_bias
self.early_stop = early_stop
self.seed = seed
Expand Down Expand Up @@ -232,7 +232,7 @@ def _fit_pt(self, train_set, val_set):
self.i_biases.reshape(-1, 1),
self.use_bias,
self.global_mean,
self.droppout,
self.dropout,
)

learn(
Expand Down

0 comments on commit e510e98

Please sign in to comment.