We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi,
While attempting to run test(), I noticed that
test()
the log variable is undefined in solver.py
log
solver.py
MolGAN-pytorch/solver.py
Line 392 in 8a22b86
log_dir
The text was updated successfully, but these errors were encountered:
sorry for late answer. And thank you for your point. The code for this part is wrong. I can't fix it right away, so I'll leave this issue unclosed.
Thank you for your interest in my code.
Sorry, something went wrong.
Hi, While attempting to run test(), I noticed that the log variable is undefined in solver.py MolGAN-pytorch/solver.py Line 392 in 8a22b86 log += ", {}: {:.4f}".format(tag, value) this log variable in line 392 referenced above is never printed or saved to a log_dir.
this log variable in line 392 referenced above is never printed or saved to a log_dir.
Just delete "+",then print(log), like this: log = ", {}: {:.4f}".format(tag, value) print(log)
No branches or pull requests
Hi,
While attempting to run
test()
, I noticed thatthe
log
variable is undefined insolver.py
MolGAN-pytorch/solver.py
Line 392 in 8a22b86
this
log
variable in line 392 referenced above is never printed or saved to alog_dir
.The text was updated successfully, but these errors were encountered: