DA-OD-MEAA-PyTorch
DA-OD-MEAA-PyTorch copied to clipboard
Domain-Adaptive Object Detection via Uncertainty-Aware Distribution Alignment, ACM MM 2020
How to generate an attention map,thanks
only test res101 predict picture
Dear Hsinchu, Thanks a lot for your opening code about your work. And when I run trainval_net_MEAA.py with adding "--mGPUs", there is an error "TypeError: forward() missing 4 required positional...
I tested the uploaded foggy cityscape trained model, but the result is different from the picture you provided. I do not modify any code. Why is this reason?
``` # initilize the network here. from model.faster_rcnn.vgg16_SCL import vgg16 if args.net == 'vgg16': fasterRCNN = vgg16(foggy_classes, pretrained=True) # fasterRCNN = vgg16(pascal_classes, pretrained=False, class_agnostic=args.class_agnostic,lc=args.lc,gc=args.gc) elif args.net == 'res101': fasterRCNN =...