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
When supplying --num-eval-batches from the CLI or from the config file, if it is larger than the size of the dataset armory will not fail until reaching the StopIteration error
The text was updated successfully, but these errors were encountered:
ifnum_batches>dataset.batches_per_epoch:
# since num-eval-batches only applies at test time, we can assume there is only 1 epochraiseValueError(
f"{num_batches} eval batches were requested, but dataset has only {dataset.batches_per_epoch} batches of size {dataset.batch_size}"
)
When supplying
--num-eval-batches
from the CLI or from the config file, if it is larger than the size of the dataset armory will not fail until reaching theStopIteration
errorThe text was updated successfully, but these errors were encountered: