darkdepth
darkdepth
您好,非常感谢分享,我再执行get_dr_txt.py时,发现生成得detection下得txt文件全空,查找错误发现,执行test策略时,执行EfficientNet的forward时(位置在代码目录$./nets/efficientdet.py),第413行x = self.model._bn0(x),也即self._bn0 = nn.BatchNorm2d(num_features=out_channels, momentum=bn_mom, eps=bn_eps)函数时, 上一步不同的输出数值,经过bn0后结果都变为相同的输出,不管接受的是什么输入,只输出'backbone_net.model._bn0.bias'的值,并且weight并不为0,查看上一步的结果,至于形状 test策略时: [16, 3, 1024, 1024] input [16, 48, 512, 512] 经过x = self.model._conv_stem(x) train策略时: [2, 3, 1024, 1024] input [2, 48, 512,...
Hello, I reported an error when training at VQA according to official instructions: FileNotFoundError: [Errno 2] No such file or directory:'/data/. . . /VQA/cache/train_target.pkl' Could you tell me how to...