ConcreteArrays and what to do about them #8512
-
Hey everyone - quick question about JAX/Flax. I’m trying to use the
I looked through the docs, and it seems like not specifying EDIT: Turns out I wasn't passing a dict into the first param of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Glad you figured it out! In case anyone comes across this question when trying to figure out what JAX ConcreteArrays are, they're basically a type of abstract array representation that JAX uses as a stand-in for an array object during tracing. See Static vs. Traced Operations for a high-level description of how JAX tracing works. |
Beta Was this translation helpful? Give feedback.
Glad you figured it out! In case anyone comes across this question when trying to figure out what JAX ConcreteArrays are, they're basically a type of abstract array representation that JAX uses as a stand-in for an array object during tracing. See Static vs. Traced Operations for a high-level description of how JAX tracing works.