Source code for monai.networks.layers.simplelayers

# 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.

import torch
import torch.nn as nn
import torch.nn.functional as F

from monai.networks.layers.convutils import gaussian_1d, same_padding


[docs]class SkipConnection(nn.Module): """Concats the forward pass input with the result from the given submodule.""" def __init__(self, submodule, cat_dim=1): super().__init__() self.submodule = submodule self.cat_dim = cat_dim
[docs] def forward(self, x): return torch.cat([x, self.submodule(x)], self.cat_dim)
[docs]class Flatten(nn.Module): """Flattens the given input in the forward pass to be [B,-1] in shape."""
[docs] def forward(self, x): return x.view(x.size(0), -1)
[docs]class GaussianFilter: def __init__(self, spatial_dims, sigma, truncated=4., device=None): """ Args: spatial_dims (int): number of spatial dimensions of the input image. must have shape (Batch, channels, H[, W, ...]). sigma (float): std. truncated (float): spreads how many stds. device (torch.device): device on which the tensor will be allocated. """ self.kernel = torch.nn.Parameter(torch.tensor(gaussian_1d(sigma, truncated)), False) self.spatial_dims = spatial_dims self.conv_n = [F.conv1d, F.conv2d, F.conv3d][spatial_dims - 1] self.padding = same_padding(self.kernel.size()[0]) self.device = device self.kernel = self.kernel.to(self.device)
[docs] def __call__(self, x): """ Args: x (tensor): in shape [Batch, chns, H, W, D]. """ if not torch.is_tensor(x): x = torch.Tensor(x) chns = x.shape[1] sp_dim = self.spatial_dims x = x.to(self.device) def _conv(input_, d): if d < 0: return input_ s = [1] * (sp_dim + 2) s[d + 2] = -1 kernel = self.kernel.reshape(s).float() kernel = kernel.repeat([chns, 1] + [1] * sp_dim) padding = [0] * sp_dim padding[d] = self.padding return self.conv_n(input=_conv(input_, d - 1), weight=kernel, padding=padding, groups=chns) return _conv(x, sp_dim - 1)