Replacement for PyTorch's nn.Parameter
in Flax
#2378
-
Hello everyone! I was wondering if there is something similar to PyTorch's |
Beta Was this translation helpful? Give feedback.
Answered by
marcvanzee
Aug 8, 2022
Replies: 1 comment 1 reply
-
Module parameters in Flax are created using |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tanaymeh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Module parameters in Flax are created using
self.param
in a Module. See the Module parameters section of our "Getting started" tutorial.