Skip to content

Commit

Permalink
fix selected ds issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vorozhkog committed Sep 25, 2024
1 parent ac5263c commit 46e31f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions project-dataset/src/ui/output_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def process_ds_tree(ds_tree, parent_id=None):
message="Creating datasets...", total=len(selected_datasets)
) as pbar:
src_ds_tree = api.dataset.get_tree(src_project)
src_ds_tree = {k: v for k, v in src_ds_tree.items() if k.id in selected_datasets}
process_ds_tree(src_ds_tree)
# 2. Apply model to the datasets
with inference_progress(message="Processing images...", total=len(g.input_images)) as pbar:
Expand Down

0 comments on commit 46e31f5

Please sign in to comment.