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, I'm new to contributing to open-source projects, but I believe I've identified a minor bug in the logging process.
The bug occurs in the validation_step function due to self.hparams.batch_size.
Here is my proposed solution: simply change self.hparams.batch_size to self.hparams.hyper_params["batch_size"].
I'm not familiar with the entire codebase, but this resolved my issue.
I have already submitted a PR.
The text was updated successfully, but these errors were encountered:
Hello, I'm new to contributing to open-source projects, but I believe I've identified a minor bug in the logging process.
The bug occurs in the
validation_step
function due toself.hparams.batch_size
.Here is my proposed solution: simply change
self.hparams.batch_size
toself.hparams.hyper_params["batch_size"]
.I'm not familiar with the entire codebase, but this resolved my issue.
I have already submitted a PR.
The text was updated successfully, but these errors were encountered: