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
If one really cares about efficiency then the first line can be replaced by model = eqx.filter_eval_shape(Model, ...). However this returns ShapeDtypeStructs rather than arrays, so the deserialisation line won't work. Right now you need to manually hack something together. We should instead make this easier to do.
The text was updated successfully, but these errors were encountered:
Right now it's possible to load a model from a checkpoint by doing something like:
If one really cares about efficiency then the first line can be replaced by
model = eqx.filter_eval_shape(Model, ...)
. However this returnsShapeDtypeStruct
s rather than arrays, so the deserialisation line won't work. Right now you need to manually hack something together. We should instead make this easier to do.The text was updated successfully, but these errors were encountered: