0911

I have run this:

# TODO: Train it for 500,000 timesteps

model.learn(total_timesteps = 500000, reset_num_timesteps = True,
log_interval = 500000/(1024*16)/4)

# TODO: Specify file name for model and save the model to file
model_name = "test.model"
with open(model_name, 'wb') as file:
  model.save(file)

The log interval is selected to output only 4 logs for the entire training.
I'll now look at the solution.

Reply via email to