We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5931dbe commit 39b8f06Copy full SHA for 39b8f06
napari_cellseg3d/code_models/models/model_SwinUNetR.py
@@ -32,7 +32,7 @@ def __init__(
32
"""
33
try:
34
super().__init__(
35
- # img_size=input_img_size,
+ img_size=input_img_size,
36
in_channels=in_channels,
37
out_channels=out_channels,
38
feature_size=48,
@@ -45,7 +45,6 @@ def __init__(
45
except TypeError as e:
46
logger.warning(f"Caught TypeError: {e}")
47
48
- img_size=input_img_size, # hack for compatibility, latest MONAI for py3.9 does not have img_size but py3.8 does
49
in_channels=1,
50
out_channels=1,
51
0 commit comments