perform cubic interpolation in 1D
(inputs, w)
| 217 | |
| 218 | |
| 219 | def _cubic_kernel(inputs, w): |
| 220 | """perform cubic interpolation in 1D""" |
| 221 | return sum([a_i * w_i for a_i, w_i in zip(inputs, w)]) |
| 222 | |
| 223 | |
| 224 | def _resize_1d( |
no test coverage detected
searching dependent graphs…