Fix logging statement

This commit is contained in:
Michael Hansen
2023-06-13 17:05:19 -05:00
parent 32410e36d9
commit b0b196773e

View File

@@ -134,7 +134,7 @@ def load_state_dict(model, saved_state_dict):
new_state_dict[k] = saved_state_dict[k]
else:
# Use initialized value
_LOGGER.debug("%s is not in the checkpoint for %s", k, key)
_LOGGER.debug("%s is not in the checkpoint", k)
new_state_dict[k] = v
model.load_state_dict(new_state_dict)