What is the "corpora.dev limit" behavior? #10852
-
My .dev file had 15000 items, and reach cuda memory limit, so, if I set the corpora.dev limit to 6000, what 6000 items will try to test on each evaluation? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The items will be the same on each evaluation. The corpus is reloaded on each call to Randomizing the items on each evaluation wouldn't make sense. |
Beta Was this translation helpful? Give feedback.
The items will be the same on each evaluation.
The corpus is reloaded on each call to
evaluate
, which triggers a new shuffling, but the call toevaluate
also fixes the random seed first so the shuffle is the same each time.Randomizing the items on each evaluation wouldn't make sense.