Skip to content

Commit

Permalink
🐛 missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-may committed Feb 3, 2022
1 parent 29124cb commit de2cf28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autodqm_ml/algorithms/autoencoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def train(self):

callbacks = []
if self.config["early_stopping"]:
callbacks.append(keras.callbacks.EarlyStopping(patience = self.config["early_stopping_rounds"))
callbacks.append(keras.callbacks.EarlyStopping(patience = self.config["early_stopping_rounds"]))

model.fit(
inputs,
Expand Down

0 comments on commit de2cf28

Please sign in to comment.