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
AttributeError: 'function' object has no attribute 'serializer'
Traceback:
Traceback (most recent call last):
File "./recall2imagine/train.py", line 241, in <module>
main()
File "./recall2imagine/train.py", line 81, in main
embodied.run.train_eval(
File "/code/recall2imagine/embodied/run/train_eval.py", line 74, in train_eval
dataset_train = agent.dataset(train_replay.dataset)
File "/code/recall2imagine/jaxagent.py", line 104, in dataset
batcher = embodied.BatcherSM(
File "/code/recall2imagine/embodied/core/batcher.py", line 123, in __init__
self._serializer = self._replay.serializer
AttributeError: 'function' object has no attribute 'serializer'
NOTE:
on train_eval.py one can change:
dataset_train=agent.dataset(train_replay.dataset)
to:
dataset_train=agent.dataset(train_replay)
which make sense since the LFS_FIFO object has serializer attribute, but then the same errors goes on the next line:
Apologies for not getting back to you on this sooner. Both first authors are currently attending ICLR 24 where we present this paper. I will get back on this right after the conference.
Running with:
python3 ./recall2imagine/train.py / --logdir /logdir/$(date +%Y%m%d-%H%M%S) / --configs atari100k tiny --task atari_pong --jax.platform=cpu
Fails with:
Traceback:
NOTE:
on train_eval.py one can change:
to:
which make sense since the LFS_FIFO object has serializer attribute, but then the same errors goes on the next line:
which is of Uniform and does not have serializer.
The text was updated successfully, but these errors were encountered: