Closed huschen closed 6 years ago
Thanks for catching that. There is no stochasticity in the first round, but there will be in the second round https://github.com/stanfordnmbl/osim-rl/issues/159 and the seed will become relevant
I am trying to see if it is possible to make the training deterministic. Is there any non-deterministic introduced by OpenSim environment? Any known computations (besides GPU computation)? Any other random seeds to be set besides the following?
tf.set_random_seed(x)
np.random.seed(x)
random.seed(x)
Cheers.
I suppose there might be potentially some stochasticity in sampling for the integrator. @carmichaelong is there any stochasticity on the OpenSim side during forwarding simulations?
There shouldn't be any stochastic events during integrations.
Thanks, @carmichael. @huschen closing, for now, let us know if you experience any nondeterministic behavior.
Though stated in the document of interface.
and here is the source code:
seed is not set.