Cross-entropy method: Difference between revisions

Content deleted Content added
Gncs (talk | contribs)
m Generic CE algorithm: add missing ^{(t)} to step 3.
Tag: Reverted
Gncs (talk | contribs)
m Generic CE algorithm: revert change
Line 26:
# Choose initial parameter vector <math>\mathbf{v}^{(0)}</math>; set t = 1.
# Generate a random sample <math>\mathbf{X}_1,\dots,\mathbf{X}_N</math> from <math>f(\cdot;\mathbf{v}^{(t-1)})</math>
# Solve for <math>\mathbf{v}^{(t)}</math>, where<br><math>\mathbf{v}^{(t)} = \mathop{\textrm{argmax}}_{\mathbf{v}} \frac{1}{N} \sum_{i=1}^N H(\mathbf{X}_i)\frac{f(\mathbf{X}_i;\mathbf{u})}{f(\mathbf{X}_i;\mathbf{v}^{(t-1)})} \log f(\mathbf{X}_i;\mathbf{v}^{(t)})</math>
# If convergence is reached then '''stop'''; otherwise, increase t by 1 and reiterate from step 2.