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
When running DATM.py on CIFAR10 and CIFAR100, CIFAR10 hardly increases memory usage, but CIFAR100 significantly increases memory usage each time the following code is executed. What could be the reason for this?
for step in range(args.syn_steps):
.......
grad = torch.autograd.grad(ce_loss, student_params[-1], create_graph=True)[0]
.......
The text was updated successfully, but these errors were encountered:
When running DATM.py on CIFAR10 and CIFAR100, CIFAR10 hardly increases memory usage, but CIFAR100 significantly increases memory usage each time the following code is executed. What could be the reason for this?
The text was updated successfully, but these errors were encountered: