If so, there should be some annotations. But it is possible that you're dealing with a typo, so just to exclude that. What do you see when you run the stats recipe?
prodigy stats -l
This should list all the datasets that have been created. Do you see ner_news_headlines?
You can also see stats for a specific dataset by running:
found the issue, im using cygwin for my terminal and it looks like there is confusion in the whitespace. So prodigy is getting an extra space even though there isn't one on the terminal.
I will need to use another terminal I guess.
I've got it working in powershell and cygwin with:
python -m prodigy db-out ner_news_headlines
thank you again... will try and work something out on my end
I'm not familiar with cygwin, I'm a zsh user myself. But with zsh I have gotten into the habbit of adding quotes. For example, this won't run with zsh:
python -m pip install embetter[text]
But this does!
python -m pip install "embetter[text]"
It could be that adding some quotes around some of your commands might also fix it. Might be worth a try.