CharlesZhang commited on
Commit
91977f9
·
1 Parent(s): 8f842da

add: instructions to support new envs

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -86,3 +86,8 @@ pip install cython==0.29.37
86
  3. install gym[mujoco]
87
  `pip install gym[mujoco]`
88
 
 
 
 
 
 
 
86
  3. install gym[mujoco]
87
  `pip install gym[mujoco]`
88
 
89
+ ### support new env
90
+ We also support other new env using Gym format, for new env you need to
91
+ 1. Translate your Gym env to TextGym env, make `<your_env>_translator.py, <your_env>policies.py`, put them into `./envs/`, and add your env in `./envs/__init__.py`.
92
+ 2. Add the PPO performance (best or expert) of your env in `./record_reflexion.csv`
93
+ 3. Test it using shell command (recommend using COT, SPP, self-reflexion, and exe under L1&L3 level). Testing examples can be found in `./shell`.