You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be better to move self.model_ema = LitEma(self) before the line of self.init_from_ckpt(ckpt_path, ignore_keys=ignore_keys, stage=stage) so that model_ema can load from checkpoint each time resuming training?
The text was updated successfully, but these errors were encountered:
https://github.com/TencentARC/Open-MAGVIT2/blob/6bfab153fb2fe612edbf8afa9b3a607d8337c194/taming/models/lfqgan.py#L62
Would it be better to move
self.model_ema = LitEma(self)
before the line ofself.init_from_ckpt(ckpt_path, ignore_keys=ignore_keys, stage=stage)
so thatmodel_ema
can load from checkpoint each time resuming training?The text was updated successfully, but these errors were encountered: