-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
The input arguments marked deprecated since 1.2 could be safely removed as they are not used in the code logic
MONAI/monai/visualize/occlusion_sensitivity.py
Lines 77 to 85 in 4e53af4
| @deprecated_arg( | |
| name="pad_val", | |
| since="1.0", | |
| removed="1.2", | |
| msg_suffix="Please use `mode`. For backwards compatibility, use `mode=mean_img`.", | |
| ) | |
| @deprecated_arg(name="stride", since="1.0", removed="1.2", msg_suffix="Please use `overlap`.") | |
| @deprecated_arg(name="per_channel", since="1.0", removed="1.2") | |
| @deprecated_arg(name="upsampler", since="1.0", removed="1.2") |
When modifying the APIs, would be great to incorporate the relevant feature request #5169