""" import torch from torch import nn class GCT(nn.Module): def __init__(self, channels, c=2, eps=1e-5): super().__init__() self.avgpool = nn.AdaptiveAvgPool2d(1) self.eps = eps self.c = c def forward(self, x): y = self.avgpool(x) mean = y.mean(dim=1, keepdim...
Furthermore, mAP@0.5 and mAP@0.5:0.95 of GCT-YOLOv5 are raised by 3.1 and 1.5%, respectively. GCT-YOLOv5 outperforms various commonly used object detection algorithms of SSS image in terms of accuracy and speed. In general, the GCT-YOLOv5 has the characteristics of strong robustness, light...