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
defopt_step(opt, step):
""" Run an optimizing step ; if using ExtraAdam, there needs to be an extrapolation step every other step """ifstep%2==0:
opt.extrapolation()
else:
opt.step()
The text was updated successfully, but these errors were encountered:
code https://github.com/GauthierGidel/Variational-Inequality-GAN/blob/master/optim/extragradient.py
+
The text was updated successfully, but these errors were encountered: