Tao Wang
Results
1
issues of
Tao Wang
This is my testing code: import torch import math from model import Uformer def expand2square(timg, factor=16.0): _, _, h, w = timg.size() X = int(math.ceil(max(h, w) / float(factor)) * factor)...