run_bgan does not actually switch to use specified optimizer
Opened this issue · 1 comments
julie-jiang commented
In lines 67-70:
if train_iter == 5000:
print "Switching to user-specified optimizer"
optimizer_dict = {"disc": dcgan.d_optims_adam,
"gen": dcgan.g_optims_adam}
I believe what you intend to have here is dcgan.d_optims and dcgan.g_optims
Xiaohui9607 commented
I believe so