This PR upgrades and pins monai to v1.3.0. This is required mainly because one particular transform RandSimulateLowResolutiond is natively implemented in this version and is useful during training.
Before this, I had to manually tweak the source code to use this transform. Now that it's stable, it can directly be imported from monai.transforms. Note that this transform is used only during training and not during inference (so the inference script remains unchanged).
I tested this version upgrade by training a model in debug mode for a few epochs and it works without breaking anything !
This PR upgrades and pins monai to v1.3.0. This is required mainly because one particular transform
RandSimulateLowResolutiond
is natively implemented in this version and is useful during training.Before this, I had to manually tweak the source code to use this transform. Now that it's stable, it can directly be imported from
monai.transforms
. Note that this transform is used only during training and not during inference (so the inference script remains unchanged).I tested this version upgrade by training a model in debug mode for a few epochs and it works without breaking anything !