mmdetection中代码不懂的地方

1. base_dense_head中forward_train函数

outs = self(x)

python - can anyone explain what "out = self(images)" do in below code - Stack Overflow

在您的情况下,__call__方法是在 super class 中实现的nn.Module。由于它是一个神经网络模块,因此需要一个输入占位符。“out”是数据的占位符,它将把模块的输出转发到模型的下一层或模块。

对于nn.Module类实例(以及从类继承的实例),forward 方法就是用作方法的方法__call__。至少在相对于nn.Module类定义的地方

 self是rpn_head,因此进的是rpn_head中的forward_single函数