jitting configdict #3397
Answered
by
marcvanzee
marcvanzee
asked this question in
Q&A
-
From an internal user: "A bunch of FLAX examples use ml_collections.ConfigDict. Is that the right way to go since it isn't hashable and so can't be used in JITted code? Or is there a workaround for that?" |
Beta Was this translation helpful? Give feedback.
Answered by
marcvanzee
Oct 5, 2023
Replies: 1 comment
-
FrozenConfigDict is immutable and hashable, so you should use that instead. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
marcvanzee
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FrozenConfigDict is immutable and hashable, so you should use that instead.