Skip to content

Commit

Permalink
Remove log output of windnet batch
Browse files Browse the repository at this point in the history
  • Loading branch information
confusedmatrix committed Feb 29, 2024
1 parent 47e336b commit 182ea0e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ocf_datapipes/training/windnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,7 @@ def __iter__(self):
logger.info("Fill in nans")
combined_datapipe = combined_datapipe.map(fill_nans_in_arrays)

one_batch = next(iter(combined_datapipe))
logger.info(one_batch)

yield one_batch
yield next(iter(combined_datapipe))


def minutes(num_mins: int):
Expand Down

0 comments on commit 182ea0e

Please sign in to comment.