Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly compute plan variance in cross-entropy planner.
Commit 734bda2 accidentally changed the variance computation from ``` sum((candidate_policy[idx] - avg)**2 for idx in elites) / (len(elites) - 1) ``` To: ``` sum((candidate_policy[0] - avg)**2 for idx in elites) / (len(elites) - 1) ``` I can't visually see a difference in performance on an in-hand reorientation task. Fixes #350. PiperOrigin-RevId: 696463663 Change-Id: I8f13e426d883cb01565d8f051ab29bf8a9a67471
- Loading branch information