Shaojie Zhan

Results 2 issues of Shaojie Zhan

` # fine-tune model if args.use_MLP: logreg = MLP(num_features, n_classes, 4096) logreg = logreg.to(device) else: logreg = nn.Sequential(nn.Linear(num_features, n_classes)) logreg = logreg.to(device) # loss / optimizer criterion = nn.CrossEntropyLoss() optimizer...

Hello, I would like to generate a visualization that compares the paths of several different optimizers on the same loss landscape, much like the example shown in .sample_images/adam_paths.gif Could you...