========================= Generating Prodigy config ========================= Auto-generating config with spaCy Generated training config
=========================== Initializing pipeline ===========================
✘ Error parsing config overrides
-> /tmp_dow30_model not a section value that can be overwritten
Hi! The output directory is the first argument of the command, so you'd do something like:
prodigy train ./tmp_dow30_model --ner dow30_data
(Adding the -- usually prefixes an argument, so in your example, you were basically defining a command line flag --./tmp_dow30_model. This isn't an known argument, so it's treated as a config override for spaCy.)
Thanks for the update! It looks like we don't currently create the output directories if they don't exist (at least not with the way we're calling into spaCy from Prodigy), so I'll add that