Python RL environments from Julia

Hi there,

Since most of the reinforcement learning environments for robotics etc. applications are available in Python so I was wondering if I could implement RL algorithms in Julia and still train those agents written in Python?

In other words, can I use RL environments like multi-agent-emergence-environments from Julia by using something like PyCall.jl?

Yes, you can use those environments with PyCall.jl. See e.g. here for our wrapper for OpenAI Gym.

1 Like

Thank you.