I'm following the "Training a NAMED ENTITY RECOGNITION MODEL with Prodigy and Transfer Learning" tutorial and I ran the following commands successfully:
prodigy ner.manual school_data blank:en texts_containing_school_stuff.txt --label SCHOOL --patterns ./school_problems/school_pattern_file.jsonl
prodigy train --ner school_data ./tmp_model --eval-split 0.2 --label-stats
prodigy train-curve ner school_data --eval-split 0.2
When I run:
prodigy ner.correct school_data_correct ./tmp_model texts_containing_school_stuff.txt --label SCHOOL --exclude school_data
I get the following error:
OSError: [E053] Could not read meta.json from tmp_model
Here is a screenshot of my working directory where the temp_model folder lives:
... and here is what's in the tmp_model folder:
Please could you help me to understand what I've done wrong and what I need to do instead?