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
Not an issue but a question. Why does cloudpickle work partially in this example?
importequinoxaseqximportjax.numpyasjnpimportcloudpickleaspclassModel(eqx.Module):
x: jnp.ndarraydef__call__(self):
returnself.xm=Model(jnp.ones((3,3)))
m=p.loads(p.dumps(m))
# this worksm()
# this does noteqx.filter_jit(m)()
>>AttributeError: 'Model'objecthasnoattribute'x'
The text was updated successfully, but these errors were encountered:
Not an issue but a question. Why does
cloudpickle
work partially in this example?The text was updated successfully, but these errors were encountered: