Replies: 1 comment 2 replies
-
Hi @qwang0225, I noticed that you specified |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have been trying to make a 3D binary segmentation model to segment intracranial hemorrhage from CT scans by following the monai tutorials. However, I cannot produce appropriate output even though the mean dice reaches 0.7.
images = sorted(glob.glob(os.path.join("./data/ICH_dataset", "ct_scans", ".nii")))
labels = sorted(glob.glob(os.path.join("./data/ICH_dataset", "masks", ".nii")))
data_dicts = [{"image": image_name, "label": label_name} for image_name, label_name in zip(images, labels)]
train_files, val_files = data_dicts[8:], data_dicts[:8]
Any inputs would be deeply appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions