You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2025. It is now read-only.
Hi everyone! Thanks for the awesome work with objax and the JAX environment, and happy holidays!
I'm trying to load some VarCollection and/or Dict[str, jnp.DeviceArray] params into the model.vars() which is a VarCollection class, and I can do so by:
But I'd expect objax.variable.VarCollection.update to work the same way e.g.
model.vars().update(new_params)
And the later doesn't work while the first one does, not sure if it's because that's not the intended behavior for VarCollection.update or if I'm doing anything wrong... But just the first one works, which for the moment is fine for what I need, but wanted to mention this just in case there's something not working as expected.
Hi everyone! Thanks for the awesome work with
objaxand the JAX environment, and happy holidays!I'm trying to load some
VarCollectionand/orDict[str, jnp.DeviceArray]params into themodel.vars()which is aVarCollectionclass, and I can do so by:But I'd expect
objax.variable.VarCollection.updateto work the same way e.g.And the later doesn't work while the first one does, not sure if it's because that's not the intended behavior for
VarCollection.updateor if I'm doing anything wrong... But just the first one works, which for the moment is fine for what I need, but wanted to mention this just in case there's something not working as expected.