Ecosystem#
This is just a rolling list of really cool libraries that I follow. Sometimes I actively use it and sometimes I just like to browse code and get good ideas.
Neural Networks#
-
This should probably be in your repertoire of libraries. A really good and simple library for neural networks from Google itself. Strictly functional and super popular. They have a new API called
linen
which has developed substantially! dm-Haiku
Another very popular deep learning library built on top of Jax. This one gives the illusion of PyTorch/TensorFlow because the modules look very class oriented. But it still follows Jax protocol. Very neat how they managed to do that. To see it from scratch, see the above tutorial.
-
A library from deepmind that does gradient processing and optimization. Apparently it’s based off of
jax.experimental.optix
which is being phased out. -
A library from deepmind
Elegy
A new library based on Jax and Haiku which has a similar style to keras. Still very new but it has potential. I find it interesting because the natural progression from Jax+Haiku is something similar to keras. I’m glad someone took up that mantle.
Probabilistic Programming#
Specific Applications#
Gaussian Processes#
Kalman Jax
This library is used for Markov GPs for time series. But they have a lot of little GP nuggets. Especially approximate inference algorithms, e.g. extended EP, statistically linearized EP, extended EP, etc.
Normalizing Flows#
NuX
Normalizing Flows using jax
jax-flows
Normalizing Flows using Jax.
Physics#
Jax Cosmo
Applied to astrophysics but they have some nice routines that are not found in the main jax library (e.g. quad and interp)