Skip to content

Commit

Permalink
try and except around odd error
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Sep 5, 2024
1 parent e227b65 commit 42ed3e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pvnet/models/base_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,11 @@ def _log_validation_results(self, batch, y_hat, accum_batch_num):
y_hat_i = y_hat[i].detach().cpu().numpy()

print(BatchKey._member_map_)
try:
time_utc_key = BatchKey[f"{self._target_key}_time_utc"]
except Exception as e:
raise Exception(f"Failed to find time_utc key for {self._target_key}, {BatchKey._member_map_}, {e}")

time_utc_key = BatchKey[f"{self._target_key}_time_utc"]
time_utc = batch[time_utc_key][i, -self.forecast_len :].detach().cpu().numpy()

id_key = BatchKey[f"{self._target_key}_id"]
Expand Down

0 comments on commit 42ed3e7

Please sign in to comment.