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
Describe the bug
In delta/utils/solver/raw_solver.py 284-286:
logging.info("Evaluation rate of "
"progress: [ {:.2%} ]".format(
i / (num_batch_every_epoch - 1)))
If infer data size is less than or equal to batch size, num_batch_every_epoch - 1 will be zero.
The text was updated successfully, but these errors were encountered:
Describe the bug
In delta/utils/solver/raw_solver.py 284-286:
logging.info("Evaluation rate of "
"progress: [ {:.2%} ]".format(
i / (num_batch_every_epoch - 1)))
If infer data size is less than or equal to batch size, num_batch_every_epoch - 1 will be zero.
The text was updated successfully, but these errors were encountered: