diff --git a/monai/networks/nets/densenet.py b/monai/networks/nets/densenet.py index 6a2c2fb4e1..e6d1cc68e6 100644 --- a/monai/networks/nets/densenet.py +++ b/monai/networks/nets/densenet.py @@ -375,7 +375,7 @@ def __init__( self, init_features: int = 64, growth_rate: int = 32, - block_config: Sequence[int] = (6, 12, 48, 32), + block_config: Sequence[int] = (6, 12, 64, 48), pretrained: bool = False, progress: bool = True, **kwargs,