daisatojp / mpo

PyTorch Implementation of the Maximum a Posteriori Policy Optimisation
GNU General Public License v3.0
70 stars 19 forks source link

Does this MPO code support custom environments? #13

Open Arcadianlee opened 2 years ago

Arcadianlee commented 2 years ago

Hi, I developed my own custom environment (still based on gym), and was wondering whether your code can support that?

daisatojp commented 2 years ago

Hi, if you want to run the MPO code without modification, your environment needs to support some variables and functions (for example, action_space, reset and step). Thanks!