You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/OVERVIEW.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ Values in brackets should be replaced by the designer.
132
132
133
133
`Agent` settings can be specified by prepending `agent_` for corresponding class members.
134
134
135
-
`Planner` settings can similarly be specified by prepending the corresponding optimizer name, (e.g., `sampling_`, `gradient_`, `ilqg_`).
135
+
`Planner` settings can similarly be specified by prepending the corresponding optimizer name, (e.g., `sampling_`, `cross_entropy_`, `gradient_`, `ilqg_`).
136
136
137
137
It is also possible to create GUI elements for parameters that are passed to the residual function. These are specified by the prefix `residual_`, when the suffix will be the display name of the slider:
138
138
@@ -280,12 +280,15 @@ Additionally, custom labeled buttons can be added to the GUI by specifying a str
280
280
281
281
The purpose of `Planner` is to find improved policies using numerical optimization.
282
282
283
-
This library includes three planners that use different techniques to perform this search:
283
+
This library includes multiple planners that use different techniques to perform this search:
284
284
285
285
-**Predictive Sampling**
286
286
- random search
287
287
- derivative free
288
288
- spline representation for controls
289
+
-**Cross Entropy Method**
290
+
- all properties of Predictive Sampling
291
+
- refits a nominal policy to mean of elite samples instead of using the best
0 commit comments