Closed al-jshen closed 1 year ago
fix autograd function error by replacing Interp1d()(...) with interp1d(...) (which calls apply instead of forward)
Interp1d()(...)
interp1d(...)
apply
forward
fix import error in README.md by exporting SDSS and BOSS in data/__init__.py
README.md
SDSS
BOSS
data/__init__.py
add .gitignore, run black and isort
.gitignore
black
isort
starting with a PR, excellent!
What version of pytorch are you on? I haven't seen this error so far.
I'm on Pytorch 1.13.1 (the latest stable version), but based on this it seems like the error has been there for at least 2.5 years now (the fix is also in that thread).
fix autograd function error by replacing
Interp1d()(...)
withinterp1d(...)
(which callsapply
instead offorward
)fix import error in
README.md
by exportingSDSS
andBOSS
indata/__init__.py
add
.gitignore
, runblack
andisort