RFEst does from jax.config import config in almost every file. This has been deprecated a while a go and now throws an error in new jax versions. It should be replaced with from jax import config.
Aside: I would recommend to not force using float64 and instead leave this decision to the user.
fixed. I kept the forced float64 because it was a sensible default; RFs look crap in most of my data with float32... users can also just turn it to False manually if they want :D
RFEst does
from jax.config import config
in almost every file. This has been deprecated a while a go and now throws an error in new jax versions. It should be replaced withfrom jax import config
.Aside: I would recommend to not force using
float64
and instead leave this decision to the user.