NAE4PS
NAE4PS copied to clipboard
KeyError: 'feat_res4'

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.