![](https://secure.gravatar.com/avatar/86577f45d5fb4051824c3df598d4157d.jpg?s=120&d=mm&r=g)
24 Jun
2022
24 Jun
'22
1:11 p.m.
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.