|
|
|
""" PyTorch selectable adaptive pooling
|
|
|
|
Adaptive pooling with the ability to select the type of pooling from:
|
|
|
|
* 'avg' - Average pooling
|
|
|
|
* 'max' - Max pooling
|
|
|
|
* 'avgmax' - Sum of average and max pooling re-scaled by 0.5
|
|
|
|
* 'avgmaxc' - Concatenation of average and max pooling along feature dim, doubles feature dim
|
|
|
|
|
|
|
|
Both a functional and a nn.Module version of the pooling is provided.
|
|
|
|
|
|
|
|
Author: Ross Wightman (rwightman)
|
|
|
|
"""
|
|
|
|
import torch
|
|
|
|
import torch.nn as nn
|
|
|
|
import torch.nn.functional as F
|
|
|
|
|
|
|
|
|
|
|
|
def adaptive_avgmax_pool2d(x, pool_type='avg', output_size=1):
|
|
|
|
"""Selectable global pooling function with dynamic input kernel size
|
|
|
|
"""
|
|
|
|
if pool_type == 'avgmax':
|
|
|
|
x_avg = F.adaptive_avg_pool2d(x, output_size)
|
|
|
|
x_max = F.adaptive_max_pool2d(x, output_size)
|
|
|
|
x = 0.5 * (x_avg + x_max)
|
|
|
|
elif pool_type == 'max':
|
|
|
|
x = F.adaptive_max_pool2d(x, output_size)
|
|
|
|
else:
|
|
|
|
x = F.adaptive_avg_pool2d(x, output_size)
|
|
|
|
return x
|
|
|
|
|
|
|
|
|
|
|
|
class AdaptiveAvgMaxPool2d(torch.nn.Module):
|
|
|
|
"""Selectable global pooling layer with dynamic input kernel size
|
|
|
|
"""
|
|
|
|
def __init__(self, output_size=1, pool_type='avg'):
|
|
|
|
super(AdaptiveAvgMaxPool2d, self).__init__()
|
|
|
|
self.output_size = output_size
|
|
|
|
self.pool_type = pool_type
|
|
|
|
if pool_type == 'avgmax':
|
|
|
|
self.pool = nn.ModuleList([nn.AdaptiveAvgPool2d(output_size), nn.AdaptiveMaxPool2d(output_size)])
|
|
|
|
elif pool_type == 'max':
|
|
|
|
self.pool = nn.AdaptiveMaxPool2d(output_size)
|
|
|
|
else:
|
|
|
|
if pool_type != 'avg':
|
|
|
|
print('Invalid pool type %s specified. Defaulting to average pooling.' % pool_type)
|
|
|
|
self.pool = nn.AdaptiveAvgPool2d(output_size)
|
|
|
|
|
|
|
|
def forward(self, x):
|
|
|
|
if self.pool_type == 'avgmax':
|
|
|
|
x = 0.5 * torch.sum(torch.stack([p(x) for p in self.pool]), 0).squeeze(dim=0)
|
|
|
|
else:
|
|
|
|
x = self.pool(x)
|
|
|
|
return x
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.__class__.__name__ + ' (' \
|
|
|
|
+ 'output_size=' + str(self.output_size) \
|
|
|
|
+ ', pool_type=' + self.pool_type + ')'
|