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
I would like to use some nice, general-purpose utilities from TF-Agents, for example the replay buffers. Is it possible to set things up so that utilities like this are usable without depending on, for example, libraries like MuJoCo or OpenAI Gym? It doesn't seem correct that something like tf_agents.replay_buffers depends on on something like MuJoCo. This causes downstream problems: for example, it's not currently straightforward to use MuJoCo on a Mac M1, so it's not currently straightforward to use tf_agents on a Mac M1 (pip3 install tf-agents && python3 -m tf_agents results in OSError: Cannot find MuJoCo library at /Users/mishchea/.mujoco/mujoco210/bin/libmujoco210.dylib.).
The text was updated successfully, but these errors were encountered:
You should be able to use replay_buffers or any other utils from TF-Agents, although you probably need to clone the repository and use it directly, instead of pip install it.
My concern isn't related to just getting things to work. I know I could copy-paste the relevant Python modules or just comment-out the imports I don't need.
My concern is, if I intend to share my code with someone else, or run it in another environment, I don't want to have to worry about either (1) copying my hacks/edits everywhere, or (2) requiring the deps for everyone, everywhere.
I would like to use some nice, general-purpose utilities from TF-Agents, for example the replay buffers. Is it possible to set things up so that utilities like this are usable without depending on, for example, libraries like MuJoCo or OpenAI Gym? It doesn't seem correct that something like
tf_agents.replay_buffers
depends on on something like MuJoCo. This causes downstream problems: for example, it's not currently straightforward to use MuJoCo on a Mac M1, so it's not currently straightforward to usetf_agents
on a Mac M1 (pip3 install tf-agents && python3 -m tf_agents
results inOSError: Cannot find MuJoCo library at /Users/mishchea/.mujoco/mujoco210/bin/libmujoco210.dylib.
).The text was updated successfully, but these errors were encountered: