patrick-kidger / torchcubicspline

Interpolating natural cubic splines. Includes batching, GPU support, support for missing values, evaluating derivatives of the spline, and backpropagation.
Apache License 2.0
198 stars 18 forks source link

Availability on pypi #15

Open rorymaizels opened 11 months ago

rorymaizels commented 11 months ago

Hi Patrick,

Would it be possible to have torchcubicspline available on pypi? I have a package that uses it (https://github.com/rorymaizels/velvet) and I would like to make this package available for download via pip, but this requires all dependencies to be hosted on pypi as well. I'm sure there are work-arounds if this isn't possible - let me know!

Cheers and thanks for the package, Rory

patrick-kidger commented 11 months ago

Hey there -- I'm afraid it's easier for me to manage little projects like this on GitHub only. If you need PyPI, then I'd suggest just copy-pasting the source code from torchcubicspline into your application.

Generally speaking I'm afraid my pytorch libraries are mostly in maintenance-only mode -- as I now strongly recommend JAX, and my JAX libraries, for any scientific work -- so anything to make this maintenance easier for me really helps!

rorymaizels commented 11 months ago

No problem, figured that may be the case but thought I'd check before copying stuff over. Thanks again!