Danijar Hafner
Danijar Hafner
It's probably an issue with the MacOSX backend, see https://github.com/matplotlib/matplotlib/issues/5675. A workaround is to force the `TkAgg` backend on Mac.
Try out solution here https://github.com/matplotlib/matplotlib/issues/5675#issuecomment-164617874 so we can use the `MacOSX` backend again.
What python version are you using?
I'm not sure if that Python version has class annotations yet? All tests including the quick start example run on GitHub CI with Python 3.10, 3.11, and 3.12.
Draft of usage example: ``` python Wikipedia()('/dataset/wikipedia.hdf5/articles') Tokenize()( '/dataset/wikipedia.hdf5/articles', '/dataset/target.hdf5/tokens', overwrite=True) for batch in Batcher(100)('/dataset/target.hdf5/tokens'): pass ```
We now have a preliminary implementation with https://github.com/danijar/sets/pull/16. Things to improve: General: - Update all other steps. Embedding: - Rename to `Encode`. - Give `_get_shape()` a better name (there is...
Needs profiling. Potential solution is just to cache the table.
Install the `mujoco-py` package from source: ``` github clone https://github.com/openai/mujoco-py.git cd mujoco-py pip3 install -e . ``` Help installer find MuJoCo and OpenGL dependencies: ``` export PATH=$PATH:~/.mujoco/mjpro150 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.mujoco/mjpro150/bin locate...
What do you mean by inference in this context?