Skip to content

Commit

Permalink
Fix to issue #79. Silent progress bar in local Keras model
Browse files Browse the repository at this point in the history
  • Loading branch information
SGenheden committed Aug 19, 2022
1 parent 7ec073d commit cfb7ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aizynthfinder/utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def predict(self, *args: np.ndarray, **_: np.ndarray) -> np.ndarray:
:param args: the input vectors
:return: the vector of the output layer
"""
return self.model.predict(args)
return self.model.predict(args, verbose=0)


def _log_and_reraise_exceptions(method: Callable) -> Callable:
Expand Down

0 comments on commit cfb7ffa

Please sign in to comment.