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 96e174a commit fba6486Copy full SHA for fba6486
synapse_net/inference/util.py
@@ -344,6 +344,7 @@ def inference_helper(
344
assert len(input_files) == len(mask_files)
345
346
for i, img_path in tqdm(enumerate(input_files), total=len(input_files), desc="Processing files"):
347
+ print("!!!!!!!!!!!!!!!!!1 start segmentation for", img_path)
348
# Determine the output file name.
349
input_folder, input_name = os.path.split(img_path)
350
@@ -396,6 +397,7 @@ def inference_helper(
396
397
with open_file(output_path, "a") as f:
398
f.create_dataset(output_key, data=segmentation, compression="gzip")
399
400
+ print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!11 segmentation done")
401
print(f"Saved segmentation to {output_path}.")
402
403
0 commit comments