File size: 12,530 Bytes
e4b9a7b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | # Copyright 2020 MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from collections import OrderedDict
from typing import Any, List, Optional, Tuple, Type, Union
import torch
import torch.nn as nn
from monai.networks.blocks.convolutions import Convolution
from monai.networks.blocks.squeeze_and_excitation import SEBottleneck, SEResNetBottleneck, SEResNeXtBottleneck
from monai.networks.layers.factories import Act, Conv, Dropout, Norm, Pool
class SENet(nn.Module):
"""
SENet based on `Squeeze-and-Excitation Networks <https://arxiv.org/pdf/1709.01507.pdf>`_.
Adapted from `Cadene Hub 2D version
<https://github.com/Cadene/pretrained-models.pytorch/blob/master/pretrainedmodels/models/senet.py>`_.
Args:
spatial_dims: spatial dimension of the input data.
in_channels: channel number of the input data.
block: SEBlock class.
for SENet154: SEBottleneck
for SE-ResNet models: SEResNetBottleneck
for SE-ResNeXt models: SEResNeXtBottleneck
layers: number of residual blocks for 4 layers of the network (layer1...layer4).
groups: number of groups for the 3x3 convolution in each bottleneck block.
for SENet154: 64
for SE-ResNet models: 1
for SE-ResNeXt models: 32
reduction: reduction ratio for Squeeze-and-Excitation modules.
for all models: 16
dropout_prob: drop probability for the Dropout layer.
if `None` the Dropout layer is not used.
for SENet154: 0.2
for SE-ResNet models: None
for SE-ResNeXt models: None
dropout_dim: determine the dimensions of dropout. Defaults to 1.
When dropout_dim = 1, randomly zeroes some of the elements for each channel.
When dropout_dim = 2, Randomly zeroes out entire channels (a channel is a 2D feature map).
When dropout_dim = 3, Randomly zeroes out entire channels (a channel is a 3D feature map).
inplanes: number of input channels for layer1.
for SENet154: 128
for SE-ResNet models: 64
for SE-ResNeXt models: 64
downsample_kernel_size: kernel size for downsampling convolutions in layer2, layer3 and layer4.
for SENet154: 3
for SE-ResNet models: 1
for SE-ResNeXt models: 1
input_3x3: If `True`, use three 3x3 convolutions instead of
a single 7x7 convolution in layer0.
- For SENet154: True
- For SE-ResNet models: False
- For SE-ResNeXt models: False
num_classes: number of outputs in `last_linear` layer.
for all models: 1000
"""
def __init__(
self,
spatial_dims: int,
in_channels: int,
block: Type[Union[SEBottleneck, SEResNetBottleneck, SEResNeXtBottleneck]],
layers: List[int],
groups: int,
reduction: int,
dropout_prob: Optional[float] = 0.2,
dropout_dim: int = 1,
inplanes: int = 128,
downsample_kernel_size: int = 3,
input_3x3: bool = True,
num_classes: int = 1000,
) -> None:
super(SENet, self).__init__()
relu_type: Type[nn.ReLU] = Act[Act.RELU]
conv_type: Type[Union[nn.Conv1d, nn.Conv2d, nn.Conv3d]] = Conv[Conv.CONV, spatial_dims]
pool_type: Type[Union[nn.MaxPool1d, nn.MaxPool2d, nn.MaxPool3d]] = Pool[Pool.MAX, spatial_dims]
norm_type: Type[Union[nn.BatchNorm1d, nn.BatchNorm2d, nn.BatchNorm3d]] = Norm[Norm.BATCH, spatial_dims]
dropout_type: Type[Union[nn.Dropout, nn.Dropout2d, nn.Dropout3d]] = Dropout[Dropout.DROPOUT, dropout_dim]
avg_pool_type: Type[Union[nn.AdaptiveAvgPool1d, nn.AdaptiveAvgPool2d, nn.AdaptiveAvgPool3d]] = Pool[
Pool.ADAPTIVEAVG, spatial_dims
]
self.inplanes = inplanes
self.spatial_dims = spatial_dims
layer0_modules: List[Tuple[str, Any]]
if input_3x3:
layer0_modules = [
(
"conv1",
conv_type(in_channels=in_channels, out_channels=64, kernel_size=3, stride=2, padding=1, bias=False),
),
("bn1", norm_type(num_features=64)),
("relu1", relu_type(inplace=True)),
("conv2", conv_type(in_channels=64, out_channels=64, kernel_size=3, stride=1, padding=1, bias=False)),
("bn2", norm_type(num_features=64)),
("relu2", relu_type(inplace=True)),
(
"conv3",
conv_type(in_channels=64, out_channels=inplanes, kernel_size=3, stride=1, padding=1, bias=False),
),
("bn3", norm_type(num_features=inplanes)),
("relu3", relu_type(inplace=True)),
]
else:
layer0_modules = [
(
"conv1",
conv_type(
in_channels=in_channels, out_channels=inplanes, kernel_size=7, stride=2, padding=3, bias=False
),
),
("bn1", norm_type(num_features=inplanes)),
("relu1", relu_type(inplace=True)),
]
layer0_modules.append(("pool", pool_type(kernel_size=3, stride=2, ceil_mode=True)))
self.layer0 = nn.Sequential(OrderedDict(layer0_modules))
self.layer1 = self._make_layer(
block, planes=64, blocks=layers[0], groups=groups, reduction=reduction, downsample_kernel_size=1
)
self.layer2 = self._make_layer(
block,
planes=128,
blocks=layers[1],
stride=2,
groups=groups,
reduction=reduction,
downsample_kernel_size=downsample_kernel_size,
)
self.layer3 = self._make_layer(
block,
planes=256,
blocks=layers[2],
stride=2,
groups=groups,
reduction=reduction,
downsample_kernel_size=downsample_kernel_size,
)
self.layer4 = self._make_layer(
block,
planes=512,
blocks=layers[3],
stride=2,
groups=groups,
reduction=reduction,
downsample_kernel_size=downsample_kernel_size,
)
self.adaptive_avg_pool = avg_pool_type(1)
self.dropout = dropout_type(dropout_prob) if dropout_prob is not None else None
self.last_linear = nn.Linear(512 * block.expansion, num_classes)
for m in self.modules():
if isinstance(m, conv_type):
nn.init.kaiming_normal_(torch.as_tensor(m.weight))
elif isinstance(m, norm_type):
nn.init.constant_(torch.as_tensor(m.weight), 1)
nn.init.constant_(torch.as_tensor(m.bias), 0)
elif isinstance(m, nn.Linear):
nn.init.constant_(torch.as_tensor(m.bias), 0)
def _make_layer(
self,
block: Type[Union[SEBottleneck, SEResNetBottleneck, SEResNeXtBottleneck]],
planes: int,
blocks: int,
groups: int,
reduction: int,
stride: int = 1,
downsample_kernel_size: int = 1,
) -> nn.Sequential:
downsample = None
if stride != 1 or self.inplanes != planes * block.expansion:
downsample = Convolution(
dimensions=self.spatial_dims,
in_channels=self.inplanes,
out_channels=planes * block.expansion,
strides=stride,
kernel_size=downsample_kernel_size,
act=None,
norm=Norm.BATCH,
bias=False,
)
layers = []
layers.append(
block(
spatial_dims=self.spatial_dims,
inplanes=self.inplanes,
planes=planes,
groups=groups,
reduction=reduction,
stride=stride,
downsample=downsample,
)
)
self.inplanes = planes * block.expansion
for _num in range(1, blocks):
layers.append(
block(
spatial_dims=self.spatial_dims,
inplanes=self.inplanes,
planes=planes,
groups=groups,
reduction=reduction,
)
)
return nn.Sequential(*layers)
def features(self, x: torch.Tensor):
x = self.layer0(x)
x = self.layer1(x)
x = self.layer2(x)
x = self.layer3(x)
x = self.layer4(x)
return x
def logits(self, x: torch.Tensor):
x = self.adaptive_avg_pool(x)
if self.dropout is not None:
x = self.dropout(x)
x = torch.flatten(x, 1)
x = self.last_linear(x)
return x
def forward(self, x: torch.Tensor) -> torch.Tensor:
x = self.features(x)
x = self.logits(x)
return x
def senet154(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEBottleneck,
layers=[3, 8, 36, 3],
groups=64,
reduction=16,
dropout_prob=0.2,
dropout_dim=1,
num_classes=num_classes,
)
return model
def se_resnet50(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEResNetBottleneck,
layers=[3, 4, 6, 3],
groups=1,
reduction=16,
dropout_prob=None,
inplanes=64,
input_3x3=False,
downsample_kernel_size=1,
num_classes=num_classes,
)
return model
def se_resnet101(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEResNetBottleneck,
layers=[3, 4, 23, 3],
groups=1,
reduction=16,
dropout_prob=0.2,
dropout_dim=1,
inplanes=64,
input_3x3=False,
downsample_kernel_size=1,
num_classes=num_classes,
)
return model
def se_resnet152(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEResNetBottleneck,
layers=[3, 8, 36, 3],
groups=1,
reduction=16,
dropout_prob=0.2,
dropout_dim=1,
inplanes=64,
input_3x3=False,
downsample_kernel_size=1,
num_classes=num_classes,
)
return model
def se_resnext50_32x4d(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEResNeXtBottleneck,
layers=[3, 4, 6, 3],
groups=32,
reduction=16,
dropout_prob=None,
inplanes=64,
input_3x3=False,
downsample_kernel_size=1,
num_classes=num_classes,
)
return model
def se_resnext101_32x4d(spatial_dims: int, in_channels: int, num_classes: int) -> SENet:
model = SENet(
spatial_dims=spatial_dims,
in_channels=in_channels,
block=SEResNeXtBottleneck,
layers=[3, 4, 23, 3],
groups=32,
reduction=16,
dropout_prob=None,
inplanes=64,
input_3x3=False,
downsample_kernel_size=1,
num_classes=num_classes,
)
return model
|