Unable to train SpanFinder model the scores are always zero #13186
Unanswered
vignesh-spericorn
asked this question in
Help: Coding & Implementations
Replies: 1 comment 3 replies
-
This is probably not enough examples for the model to generalize to new eval data. If you want to test the training process with a very small number of examples, it can make sense to use the whole dataset both as the train and the dev data. Obviously just for testing, but you can make sure that the config is working and that the model can overfit and memorize training examples. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello
I'm trying to train a
span_finder
model using this as reference. My goal is to train aspan_cat
model using thisspan_finder
model for extracting required data from resumes.I have tried the sample project here and was able to successfully train a
span_finder
model.I have annotated a small set of resumes using NER annotator.
I used this config file and modified only two things
I converted the annotated data to spacy format using the following function:
This is my output when i run
spacy debug_data
command:When training the scores are always zero. I'm not sure what's the problem here.
Kindly requesting the communities help.
Regards,
Beta Was this translation helpful? Give feedback.
All reactions