Torch.nn.functional.interpolate VS skimage.transform.resize

I found the result is different between torch.nn.functional.interpolate and skimage.transform.resize, although I have used the same order or mode.
Does anybody know the other resize operation, I want it to be the same result as torch.nn.function.interpolate.

I don’t know how skimage implements the interpolation, but this post might be interesting in this context, as it explains the difference between OpenCV and PIL (which might be the same root cause for the difference you are seeing).