/tf.interp

Multivariate linear interpolation in TensorFlow

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0

Multivariate linear interpolation in TensorFlow

This module implements a custom TensorFlow operation that replicates the RegularGridInterpolator from SciPy.

To install, run:

python setup.py install

or

python setup.py develop

And then use:

from tfinterp import regular_nd
zi = regular_nd(points, values, xi)

in your code. See the docstring for regular_nd for more information.