Fix and enforce new lines at the end of files.

This commit is contained in:
comfyanonymous
2024-12-30 04:14:59 -05:00
parent 3507870535
commit d9b7cfac7e
10 changed files with 10 additions and 9 deletions

View File

@@ -194,4 +194,4 @@ class AdamWwithEMAandWings(optim.Optimizer):
for param, ema_param in zip(params_with_grad, ema_params_with_grad):
ema_param.mul_(cur_ema_decay).add_(param.float(), alpha=1 - cur_ema_decay)
return loss
return loss