Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
brunofavs committed May 8, 2024
1 parent 411cf06 commit a1b8c5a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions atom_batch_execution/scripts/batch_execution
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,11 @@ def main():

collections_to_remove = data['collections_to_remove']

args["collection_selection_function"] = lambda x : int(x) in collections_to_remove
args["collection_selection_function"] = lambda x : int(x) not in collections_to_remove
args['use_incomplete_collections'] = None
args['remove_partial_detections'] = None

for collection_number in collections_to_remove:
filterCollectionsFromDataset(dataset,args)
filterCollectionsFromDataset(dataset,args)

# Generate classes and collection keys
classes, collection_keys = generateClasses(dataset)
Expand Down

0 comments on commit a1b8c5a

Please sign in to comment.