Why do you upscale images in test.py?
# testing scale
if args.dataset == "FDDB":
resize = 3
elif args.dataset == "PASCAL":
resize = 2.5
elif args.dataset == "AFW":
resize = 1
if resize != 1:
img = cv2.resize(img, None, None, fx=resize, fy=resize, interpolation=cv2.INTER_LINEAR)
It looks to me that resizing images to the training scale (1024x1024) is more logical. But the performance on benchmarks is worse (-2.3%) for some reason.
Why do you upscale images in test.py?
It looks to me that resizing images to the training scale (1024x1024) is more logical. But the performance on benchmarks is worse (-2.3%) for some reason.