rarick / football

Check out the new game server:
https://research-football.dev
Apache License 2.0
0 stars 0 forks source link

Save agent progress #4

Open AntoineRoll opened 3 years ago

AntoineRoll commented 3 years ago

We have to find a solution to save agent's state during or after training to be able to use it after closing cloud notebook or restart training.

We need to clearly state the versions of agents (date, HP chosen, training parameters, etc).

Ideas:

rarick commented 3 years ago

Incrementally save model parameters to file for later use. Must be compatible with loading in #5

rarick commented 3 years ago

see model.save(filepath) in openAI baselines

rarick commented 3 years ago

This also needs to save the environment configuration which was used to produce the model. Save the yaml alongside these parameters.