Train data vs dev data for spacy #8395
-
How do spacy model training uses "train" data and "dev" data? In the config.cfg file I can specify the two params |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
When you train with training and dev data, the training data is actually used for training (to update your model), while the dev data is used for evaluation that occurs every however-many steps. The dev data is referred to as "evaluation data" at the start of the training docs. |
Beta Was this translation helpful? Give feedback.
When you train with training and dev data, the training data is actually used for training (to update your model), while the dev data is used for evaluation that occurs every however-many steps.
The dev data is referred to as "evaluation data" at the start of the training docs.