FasterRCNN_KERAS
FasterRCNN_KERAS copied to clipboard
train_frcnn.py
inv_map = {v: k for k, v in class_mapping.iteritems()}
应该写成
inv_map = {v: k for k, v in class_mapping.items()}
this is not a bug, it just the difference betweet py3 and py2