I'm using Stable-Baseline to train A2C model.
My data length is 9000. So how many total_timesteps
in model.learn
should I set?
model.learn(total_timesteps = 9000) # ?
I did some research and some suggest like 10000, and some suggest 1 million. I'm really confused.
Any suggestions?