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
Describe the bug
As title says : RandSpatialCropd transform does not seem to crop when in lazy mode.
To Reproduce
importtorchfromtorchvision.transformsimportComposeimportmonai.transformsx=torch.rand((1, 10, 10, 10))
t=monai.transforms.RandSpatialCrop((5, 5, 5), random_size=False, lazy=True)
t(x).size()
# returns 10,10,10 for all
Expected behavior
should return 5,5,5
Environment
================================
Printing MONAI config...
================================
MONAI version: 1.3.dev2329
Numpy version: 1.24.2
Pytorch version: 1.13.1+cu117
MONAI flags: HAS_EXT = False, USE_COMPILED = False, USE_META_DICT = False
MONAI rev id: c82c65a288e396f8f7d059e82373edb1814b20be
MONAI __file__: /home/ec2-user/.pyenv/versions/3.9.2/lib/python3.9/site-packages/monai/__init__.py
Optional dependencies:
Pytorch Ignite version: NOT INSTALLED or UNKNOWN VERSION.
ITK version: NOT INSTALLED or UNKNOWN VERSION.
Nibabel version: 5.0.1
scikit-image version: 0.20.0
Pillow version: 9.4.0
Tensorboard version: NOT INSTALLED or UNKNOWN VERSION.
gdown version: NOT INSTALLED or UNKNOWN VERSION.
TorchVision version: 0.14.1+cu117
tqdm version: 4.64.1
lmdb version: NOT INSTALLED or UNKNOWN VERSION.
psutil version: NOT INSTALLED or UNKNOWN VERSION.
pandas version: 1.5.3
einops version: NOT INSTALLED or UNKNOWN VERSION.
transformers version: NOT INSTALLED or UNKNOWN VERSION.
mlflow version: NOT INSTALLED or UNKNOWN VERSION.
pynrrd version: NOT INSTALLED or UNKNOWN VERSION.
For details about installing the optional dependencies, please visit:
https://docs.monai.io/en/latest/installation.html#installing-the-recommended-dependencies
================================
Printing system config...
================================
`psutil` required for `print_system_info`
================================
Printing GPU config...
================================
Num GPUs: 0
Has CUDA: False
cuDNN enabled: True
cuDNN version: 8500
The text was updated successfully, but these errors were encountered:
PaulJehanno
changed the title
RandSpatialCropd(random_size=False) does not crop in lazy mode
RandSpatialCrop(random_size=False) does not crop in lazy mode
Jul 21, 2023
Describe the bug
As title says : RandSpatialCropd transform does not seem to crop when in lazy mode.
To Reproduce
Expected behavior
should return 5,5,5
Environment
The text was updated successfully, but these errors were encountered: