-
Hey I dunno if I am searching wrong or what, but how do you save flax's nn.Module models? I tried jnp.save('...', frozen_dict_of_auto_encoder_params) and the loaded stuff are just ['encoder', 'decoder'] and nothing else. Is there something like a tf.saved_models.save('...')? |
Beta Was this translation helpful? Give feedback.
Answered by
lamflokas
Jul 18, 2021
Replies: 1 comment 1 reply
-
This link shows an example on how to save and load FrozenDicts in Flax. The flax serialiation package contains a lot of helpful functions. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
DonghanHe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This link shows an example on how to save and load FrozenDicts in Flax. The flax serialiation package contains a lot of helpful functions.