**Is your feature request related to a problem? Please describe.** `decathlon_dataloader.py` only prepend `base_dir` path to "image" and if it's segmentation to "label". However, if we have a "mask" entry it is not prepended by `base_dir`. https://github.com/Project-MONAI/MONAI/blob/master/monai/data/decathlon_datalist.py#L65-L68 **Describe the solution you'd like** ``` if k == "image" or k == "mask": item[k] = _compute_path(base_dir, v) elif is_segmentation and k == "label": item[k] = _compute_path(base_dir, v) ```
Is your feature request related to a problem? Please describe.
decathlon_dataloader.pyonly prependbase_dirpath to "image" and if it's segmentation to "label". However, if we have a "mask" entry it is not prepended bybase_dir.https://github.com/Project-MONAI/MONAI/blob/master/monai/data/decathlon_datalist.py#L65-L68
Describe the solution you'd like