-
My primary use-case for JAX is to perform gradient-based optimization. I am aware of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think JAXline may suit your needs: https://github.com/deepmind/jaxline |
Beta Was this translation helpful? Give feedback.
-
We didn't want to be prescriptive about training loops in JAX, and thought it would be better for us to provide no abstraction at all rather than a complicated abstraction that no-one likes. There are libraries built on top of JAX that are more opinionated. |
Beta Was this translation helpful? Give feedback.
We didn't want to be prescriptive about training loops in JAX, and thought it would be better for us to provide no abstraction at all rather than a complicated abstraction that no-one likes. There are libraries built on top of JAX that are more opinionated.
jaxline
is one example.flax
also has many examples of training loops, butflax
mostly subscribes to a "you should fork the training loop and modify" philosophy, rather than building a library abstraction for it.