Why in evaluation there are 1856 predictions #30
Answered
by
DrownFish19
fersebas
asked this question in
BaiduKDDCup2022
-
Why there are 1856 predictions in evaluation (last 15 days) instead of 15246 - 288 + 1 = 1873? It depends on batch size? Thank you for your answer. Fernando |
Beta Was this translation helpful? Give feedback.
Answered by
DrownFish19
Apr 23, 2022
Replies: 1 comment 8 replies
-
The dataloader with In the baseline, the batchsize is set at 32, and 1873/32 = 58.53125, 1856/32 = 58. Thus the last 17 items will be drop.
|
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
zhoujingbo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The dataloader with
drop_last =True
will drop the last items which can not make another batch.In the baseline, the batchsize is set at 32, and 1873/32 = 58.53125, 1856/32 = 58. Thus the last 17 items will be drop.