How to understand the architecture design of Jax? #21378
-
There is relatively little information about Jax at the moment, only the source code and Tutarial. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi - thanks for the question! The best resource we have for that currently is probably autodidax, which is a simplified re-implementation of the core features of JAX built from the ground up. It's not exactly like the real JAX code (as you noted, in earlier sections it lowers |
Beta Was this translation helpful? Give feedback.
Hi - thanks for the question! The best resource we have for that currently is probably autodidax, which is a simplified re-implementation of the core features of JAX built from the ground up. It's not exactly like the real JAX code (as you noted, in earlier sections it lowers
cos
and other operations to numpy rather than XLA for simplicity) but it covers many of the core concepts behind JAX's computational model.