juniorrojas/algovivo

Implement Gaussian distribution for stochastic policies

Closed this issue · 0 comments

The demo uses a uniform distribution to add stochasticity to the neural controller.

da += (Math.random() - 0.5) * 0.5;

Let's implement a Gaussian distribution to be consistent with the original implementation.