![](https://secure.gravatar.com/avatar/86577f45d5fb4051824c3df598d4157d.jpg?s=120&d=mm&r=g)
24 Jun
2022
24 Jun
'22
1:05 p.m.
0903 I have written this and am playing with it: # TODO: Train it for 500,000 timesteps model.learn(total_timesteps = 48000) # TODO: Specify file name for model and save the model to file model_name = "test.model" model.save(model_name) I used autocomplete to learn about the functions. I chose 48000 timesteps because n_steps = 1024, n_env = 16, and the default log frequency is 1. I was hoping to see 3 logs, but I mis-chose the math, and I see 2. I'm not certain of what the log frequency means, but I have a somewhat better idea. I will next look through both autocompletions to see if I can find more parameters that could be of interest.