Hello, I’ve used the model assisted labeling pipeline to attach pre-labels to a data batch. If i want to create a pipeline that finds all images across all projects that don’t have pre-labels, how would I do so?
I am currently iterating through all projects, and exporting the queued data rows. Ideally, a data row would not show up in queued if it already has a MAL pre-label:
project = client.get_project('clfqxx1vb05ln07wq9ucu8fh6')
data_rows = project.export_queued_data_rows()
# insert some logic to filter out data rows that already have pre-labels attached
thanks in advance!