We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4f549 commit 7c369b1Copy full SHA for 7c369b1
multic/segmentationschool/Codes/IterativeTraining_1X.py
@@ -110,7 +110,8 @@ def IterateTraining(args):
110
MetadataCatalog.get("my_dataset").set(thing_classes=tc)
111
MetadataCatalog.get("my_dataset").set(stuff_classes=sc)
112
113
- usable_slides_val=get_slide_data(args, wsi_directory=dirs['val_data_dir'])
+ # usable_slides_val=get_slide_data(args, wsi_directory=dirs['val_data_dir'])
114
+ usable_slides_val = usable_slides.copy()
115
116
usable_idx_val=range(0,len(usable_slides_val))
117
slide_idxs_val=random.choices(usable_idx_val,k=int(args.batch_size*args.train_steps/100))
0 commit comments