Skip to content

Commit

Permalink
remove douple prinitng of BS warning
Browse files Browse the repository at this point in the history
  • Loading branch information
M-R-Schaefer committed Mar 29, 2024
1 parent 79a9e69 commit 90c9f69
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apax/data/input_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def validate_batch_size(self, batch_size: int) -> int:
f"requested batch size {batch_size} is larger than the number of data"
f" points {self.n_data}. Setting batch size = {self.n_data}"
)
print("Warning: " + msg)
log.warning(msg)
batch_size = self.n_data
return batch_size
Expand Down

0 comments on commit 90c9f69

Please sign in to comment.