Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ema to BaseTrainer init #916

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/fairchem/core/trainers/base_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def __init__(
self.cpu = cpu
self.epoch = 0
self.step = 0
self.ema = None

if torch.cuda.is_available() and not self.cpu:
logging.info(f"local rank base: {local_rank}")
Expand Down Expand Up @@ -617,7 +618,7 @@ def load_checkpoint(
"Loading checkpoint in inference-only mode, not loading keys associated with trainer state!"
)

if "ema" in checkpoint and checkpoint["ema"] is not None:
if "ema" in checkpoint and checkpoint["ema"] is not None and self.ema:
self.ema.load_state_dict(checkpoint["ema"])
else:
self.ema = None
Expand Down
Loading