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
Hello!
We tried to reproduce the experiment in your paper (Figure 16, ResNet on CIFAR-10 for different widths (compared to a base network).
We made some modifications to examples/ResNet/main.py:
for width_mult in [0.5, 1.0, 2.0, ]:
for log2lr in np.linspace(-3, 0, 7):
net = getattr(resnet, args.arch)(wm=width_mult)
...
if args.optimizer == 'musgd':
optimizer = MuSGD(net.parameters(), lr=2**log2lr,
momentum=args.momentum,
weight_decay=args.weight_decay)
...
Hello!
We tried to reproduce the experiment in your paper (Figure 16, ResNet on CIFAR-10 for different widths (compared to a base network).
We made some modifications to examples/ResNet/main.py:
And we ran the following commands:
Then we got the following picture:
Is there anything wrong in our implementation? Thanks.
The text was updated successfully, but these errors were encountered: