torch_interpolations
torch_interpolations copied to clipboard
Interpolation routines in Pytorch.
Hi @sbarratt, thanks for this implementation. I tested it against scipy.interpolate.griddata and I got very close results using torch and 'linear' interpolation. Have you noticed these differences? Are you planning...
Hi, this module is great :-) I'm wondering however if there are any options on the table for reducing CUDA fixed overheads and hence getting a speedup on smaller tensors?...
The scipy routine has the dimension of the points to evaluate as the last axis. However, it seems that your implementation requires it to be the first axis (there is...