NAE4PS icon indicating copy to clipboard operation
NAE4PS copied to clipboard

KeyError: 'feat_res4'

Open yyyhainan opened this issue 3 years ago • 1 comments

image

yyyhainan avatar May 20 '22 07:05 yyyhainan

in Line 324 of faster_rcnn_norm_aware.py : self.in_channels = map(int, in_channels), it should be : self.in_channels = list(map(int, in_channels)) when you are running the code in python3. But there will be more bugs after you motify that line,so you would better change your environment to python2.x.

rabbityqc avatar Jul 26 '22 11:07 rabbityqc