论文链接:👿 YOLOv9: Learning What You Want to Learn Using Programmable Gradient Information
代码链接:👿 https://github.com/WongKinYiu/yolov9/tree/main
Silence代码
class Silence(nn.Module):
def __init__(self):
super(Silence, self).__init__()
def forward(self, x):
return x
Silence模块位于yolov9网络的第一层,从Silence的代码中我们可以看到,Yolo v9的Silence模块的作用就是返回输入的图片变量,并不包含其余操作。这个操作可以将x保存在网络的结构中,极大的方便双主干(在yolo v9中是辅助分支)的调用及其他工作,如下图(图片来源于网络)。