Prodigy db-out without the flagged data

Hi!

You can find a similar question and relevant answer in this thread: Exporting not_flagged annotation

In short, there's not a predefined option for this, but it should be straightforward to implement as a custom recipe:

from prodigy.components.db import connect

db = connect()
examples = db.get_dataset("your_dataset")
filtered_examples = [eg for eg in examples if not eg.get("flagged")]