the test pretrained code can not reach miou 43.7 ,when i test,the pretrained codes the miou is 0.47
the code runining result:
File "test.py", line 99, in
main(args.cfg, args.exp_suffix)
File "test.py", line 92, in main
evaluate_domain_adaptation(models, test_loader, cfg)
File "/home/DATA/huyujie/think/ADVENT-master/advent/domain_adaptation/eval_UDA.py", line 29, in evaluate_domain_adaptation
verbose)
File "/home/DATA/huyujie/think/ADVENT-master/advent/domain_adaptation/eval_UDA.py", line 52, in eval_single
_, pred_main, _ = model(image.cuda(device))
ValueError: not enough values to unpack (expected 3, got 2)
when i modify the code pred_main = model(image.cuda(device))[1]
can running but the miou is 0.47
