DL-Art-School/codes/models/archs/RRDBNet_arch.py

201 lines
6.9 KiB
Python
Raw Normal View History

2020-10-29 15:39:45 +00:00
import os
2019-08-23 13:42:47 +00:00
import torch
import torch.nn as nn
import torch.nn.functional as F
2020-10-29 15:39:45 +00:00
import torchvision
2020-10-27 16:25:31 +00:00
from torch.utils.checkpoint import checkpoint_sequential
2019-08-23 13:42:47 +00:00
2020-10-29 15:39:45 +00:00
from models.archs.arch_util import make_layer, default_init_weights, ConvGnSilu
2019-08-23 13:42:47 +00:00
2020-10-27 16:25:31 +00:00
class ResidualDenseBlock(nn.Module):
"""Residual Dense Block.
Used in RRDB block in ESRGAN.
Args:
mid_channels (int): Channel number of intermediate features.
growth_channels (int): Channels for each growth.
"""
def __init__(self, mid_channels=64, growth_channels=32):
super(ResidualDenseBlock, self).__init__()
for i in range(5):
out_channels = mid_channels if i == 4 else growth_channels
self.add_module(
f'conv{i+1}',
nn.Conv2d(mid_channels + i * growth_channels, out_channels, 3,
1, 1))
2019-08-23 13:42:47 +00:00
self.lrelu = nn.LeakyReLU(negative_slope=0.2, inplace=True)
2020-10-27 16:25:31 +00:00
for i in range(5):
default_init_weights(getattr(self, f'conv{i+1}'), 0.1)
2019-08-23 13:42:47 +00:00
def forward(self, x):
2020-10-27 16:25:31 +00:00
"""Forward function.
Args:
x (Tensor): Input tensor with shape (n, c, h, w).
Returns:
Tensor: Forward results.
"""
2019-08-23 13:42:47 +00:00
x1 = self.lrelu(self.conv1(x))
x2 = self.lrelu(self.conv2(torch.cat((x, x1), 1)))
x3 = self.lrelu(self.conv3(torch.cat((x, x1, x2), 1)))
x4 = self.lrelu(self.conv4(torch.cat((x, x1, x2, x3), 1)))
x5 = self.conv5(torch.cat((x, x1, x2, x3, x4), 1))
2020-10-27 16:25:31 +00:00
# Emperically, we use 0.2 to scale the residual for better performance
2019-08-23 13:42:47 +00:00
return x5 * 0.2 + x
2020-06-06 03:02:08 +00:00
2019-08-23 13:42:47 +00:00
class RRDB(nn.Module):
2020-10-27 16:25:31 +00:00
"""Residual in Residual Dense Block.
2019-08-23 13:42:47 +00:00
2020-10-27 16:25:31 +00:00
Used in RRDB-Net in ESRGAN.
2020-10-27 16:25:31 +00:00
Args:
mid_channels (int): Channel number of intermediate features.
growth_channels (int): Channels for each growth.
"""
2020-10-27 16:25:31 +00:00
def __init__(self, mid_channels, growth_channels=32):
super(RRDB, self).__init__()
self.rdb1 = ResidualDenseBlock(mid_channels, growth_channels)
self.rdb2 = ResidualDenseBlock(mid_channels, growth_channels)
self.rdb3 = ResidualDenseBlock(mid_channels, growth_channels)
2020-06-06 03:02:08 +00:00
2019-08-23 13:42:47 +00:00
def forward(self, x):
2020-10-27 16:25:31 +00:00
"""Forward function.
Args:
x (Tensor): Input tensor with shape (n, c, h, w).
Returns:
Tensor: Forward results.
"""
out = self.rdb1(x)
out = self.rdb2(out)
out = self.rdb3(out)
# Emperically, we use 0.2 to scale the residual for better performance
return out * 0.2 + x
2020-06-09 19:28:55 +00:00
2020-10-29 15:39:45 +00:00
class RRDBWithBypass(nn.Module):
"""Residual in Residual Dense Block.
Used in RRDB-Net in ESRGAN.
Args:
mid_channels (int): Channel number of intermediate features.
growth_channels (int): Channels for each growth.
"""
def __init__(self, mid_channels, growth_channels=32):
super(RRDBWithBypass, self).__init__()
self.rdb1 = ResidualDenseBlock(mid_channels, growth_channels)
self.rdb2 = ResidualDenseBlock(mid_channels, growth_channels)
self.rdb3 = ResidualDenseBlock(mid_channels, growth_channels)
self.bypass = nn.Sequential(ConvGnSilu(mid_channels*2, mid_channels, kernel_size=3, bias=True, activation=True, norm=True),
ConvGnSilu(mid_channels, mid_channels//2, kernel_size=3, bias=False, activation=True, norm=False),
ConvGnSilu(mid_channels//2, 1, kernel_size=3, bias=False, activation=False, norm=False),
nn.Sigmoid())
def forward(self, x):
"""Forward function.
Args:
x (Tensor): Input tensor with shape (n, c, h, w).
Returns:
Tensor: Forward results.
"""
out = self.rdb1(x)
out = self.rdb2(out)
out = self.rdb3(out)
bypass = self.bypass(torch.cat([x, out], dim=1))
self.bypass_map = bypass.detach().clone()
# Emperically, we use 0.2 to scale the residual for better performance
return out * 0.2 * bypass + x
2020-10-27 16:25:31 +00:00
class RRDBNet(nn.Module):
"""Networks consisting of Residual in Residual Dense Block, which is used
in ESRGAN.
ESRGAN: Enhanced Super-Resolution Generative Adversarial Networks.
Currently, it supports x4 upsampling scale factor.
Args:
in_channels (int): Channel number of inputs.
out_channels (int): Channel number of outputs.
mid_channels (int): Channel number of intermediate features.
Default: 64
num_blocks (int): Block number in the trunk network. Defaults: 23
growth_channels (int): Channels for each growth. Default: 32.
"""
def __init__(self,
in_channels,
out_channels,
mid_channels=64,
num_blocks=23,
2020-10-29 15:39:45 +00:00
growth_channels=32,
body_block=RRDB,
2020-10-29 15:48:10 +00:00
blocks_per_checkpoint=4,
scale=4):
2020-06-09 19:28:55 +00:00
super(RRDBNet, self).__init__()
2020-10-29 15:39:45 +00:00
self.num_blocks = num_blocks
self.blocks_per_checkpoint = blocks_per_checkpoint
2020-10-29 15:48:10 +00:00
self.scale = scale
2020-10-27 16:25:31 +00:00
self.conv_first = nn.Conv2d(in_channels, mid_channels, 3, 1, 1)
self.body = make_layer(
2020-10-29 15:39:45 +00:00
body_block,
2020-10-27 16:25:31 +00:00
num_blocks,
mid_channels=mid_channels,
growth_channels=growth_channels)
self.conv_body = nn.Conv2d(mid_channels, mid_channels, 3, 1, 1)
# upsample
self.conv_up1 = nn.Conv2d(mid_channels, mid_channels, 3, 1, 1)
self.conv_up2 = nn.Conv2d(mid_channels, mid_channels, 3, 1, 1)
self.conv_hr = nn.Conv2d(mid_channels, mid_channels, 3, 1, 1)
self.conv_last = nn.Conv2d(mid_channels, out_channels, 3, 1, 1)
2020-06-09 19:28:55 +00:00
self.lrelu = nn.LeakyReLU(negative_slope=0.2, inplace=True)
2020-10-27 16:25:31 +00:00
for m in [
self.conv_first, self.conv_body, self.conv_up1,
self.conv_up2, self.conv_hr, self.conv_last
]:
default_init_weights(m, 0.1)
def forward(self, x):
2020-10-27 16:25:31 +00:00
"""Forward function.
Args:
x (Tensor): Input tensor with shape (n, c, h, w).
Returns:
Tensor: Forward results.
"""
feat = self.conv_first(x)
2020-10-29 15:39:45 +00:00
body_feat = self.conv_body(checkpoint_sequential(self.body, self.num_blocks // self.blocks_per_checkpoint, feat))
2020-10-27 16:25:31 +00:00
feat = feat + body_feat
# upsample
feat = self.lrelu(
self.conv_up1(F.interpolate(feat, scale_factor=2, mode='nearest')))
2020-10-29 15:48:10 +00:00
if self.scale == 4:
feat = self.lrelu(
self.conv_up2(F.interpolate(feat, scale_factor=2, mode='nearest')))
else:
feat = self.lrelu(self.conv_up2(feat))
2020-10-27 16:25:31 +00:00
out = self.conv_last(self.lrelu(self.conv_hr(feat)))
2020-10-29 15:39:45 +00:00
return out
def visual_dbg(self, step, path):
for i, bm in enumerate(self.body):
torchvision.utils.save_image(bm.bypass_map.cpu().float(), os.path.join(path, "%i_bypass_%i.png" % (step, i+1)))