Train_MB_Size & eval_mb_size Clarification #873
-
What does the train_mb_size and eval_mb_size do to the number of images?Say a folder has 1500 images in total for three different classes. If so, if I set train_mb_size to 5, when I run the experiment I get 15 per experience. I struggled to find explanation in documentation e.g. Naive simply says To confirm the question is: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
train_mb_size
andeval_mb_size
are arguments of the data loader. Basically, they iterate over the current dataset, returning mini-batches of the chosen size.