You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thank you for making this interesting work and repository public!
I am running the inference code on the sample mpMRI dataset provided, and have noticed a few small issues:
The name of the config file specified is incorrect, and should be/configs/config_infer_MRI.yaml
I can successfully run the code using the T2, ADC, DWI, gland, and cancer nii files as written here: configs/config_infer_MRI.yaml. However, in inference_mpMRI.py, it seems that the cancer nii file is optional:
I tried removing this from the yaml file. However, it does not seem like this case is handled:
It is my understanding that for inference, only the T2, DWI, and ADC images are necessary, as written in the paper:
"The model processes three MRI sequences (T2-weighted, DWI, and ADC) independently through sequence-specific decoders that generate pixel-level probability maps for prostate gland segmentation and cancer classification"
If so, it might be useful to handle the cases where the gland/cancer nii files are not provided in the config file for inference.