Unclear what the column 'E' is outputting in the console output during training #7731
-
At first I thought it was an iteration within each Epoch but now I'm not sure after seeing it complete an entire training. I set my max epochs parameter in the configuration to 25 and this was the result. It looks like there are 25 rows but the Epoch number doesn't correspond to the max value I specified in the configuration. Also I'm not sure how this related to the 'iterations' parameter that we used to use in the spaCy 2.x. Thank s for any clarification. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
E is for epochs, # is for steps (iterations). Training can end before the max epochs / steps if you've set a It looks like your score (right column) didn't improve for 8 * 200 = 1600 steps, which is the default patience value, and should be listed in your config. Does that make sense? |
Beta Was this translation helpful? Give feedback.
E is for epochs, # is for steps (iterations). Training can end before the max epochs / steps if you've set a
patience
value. You can read more about how these values interact in #7465.It looks like your score (right column) didn't improve for 8 * 200 = 1600 steps, which is the default patience value, and should be listed in your config.
Does that make sense?