-
Hey, I was wondering, what is exactly the purpose of the module Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @VIVelev -- this directory contained a nn library implementation directly on top of function core ( |
Beta Was this translation helpful? Give feedback.
Hi @VIVelev -- this directory contained a nn library implementation directly on top of function core (
flax.core
), without any module classes. Everything is just a function that takes ascope
as a first argument. This was instrumental in our design discussions (and I believe we use these in theflax.core
unit tests) but we don't suggest this as a user-facing API.