jurgisp / memory-maze

Evaluating long-term memory of reinforcement learning algorithms
MIT License
129 stars 13 forks source link

Is the structure of the environment fixed once the environment is created? #9

Closed hydro-man closed 1 year ago

hydro-man commented 1 year ago

When I use gym to interact with memory-maze.

Is the structure of the environment fixed once the environment is created?

Or will thie env structure be rebuilt every time when the reset method is called?

jurgisp commented 1 year ago

The maze is regenerated every time env.reset() is called, so you should only need to create the environment once and use it during the course of training.