You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 to add also the other methods in scipy.interpolate.griddata or can you tell where to adapt your code to implement those methods?
The text was updated successfully, but these errors were encountered:
I think this code only interpolates a grid, whereas scipy griddata interpolates unstructured data. So you can't actually write an equivalent code.
When using RegularGridInterpolator you should provide in points a list of lists of coordinates along each axis, and in values, the values on all combination of coordinates along all those axes.
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 to add also the other methods in scipy.interpolate.griddata or can you tell where to adapt your code to implement those methods?
The text was updated successfully, but these errors were encountered: