Difference between revisions of "Reflection/Expansion"

From Adaptive Population based Simplex
Jump to: navigation, search
(Created page with "TO COMPLETE == Basic selection (s0) == Select D+1 agents at random<br /> Be sure that the current one is in this list. If not, replace the last of the list by the current o...")
 
m (Admin moved page Reflection to Reflection/Expansion)
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
TO COMPLETE
+
== Basic reflection/expansion (r0) ==
 +
We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved. The idea is that a move from xworst to xworst2 is probably a good one, so, on the contrary, the same move applied to xbest is probably a bad one, i.e. it tends to deteriorate the position.  But on the other hand, it also gives a chance to escape from the attraction basin of xbest.
  
== Basic selection (s0) ==
+
Of course, for a unimodal landscape, this is a waste of time, but for multimodal ones, it may be useful. Moreover, this move is not applied on all dimensions, but only on some of them, according to the probability estimated at the end of the selection phase. So, finally, the formulae to define the new point xe are, for each dimension d:<br />
Select D+1 agents at random<br />
+
Be sure that the current one is in this list. If not, replace the last of the list by the current one.<br />
+
  
Compute the volume $V_s$ of the simplex defined by these points.
+
if ($rand(0,1)<p)$ <br />
 +
xr,d=xbest,d+(xworst2,dxworst,d)<br />
 +
else <br />
 +
$  x_{r,d}=x_{i,d}$
  
Take the three first ones, and sort them by increasing order of fitness.
+
If xr is better than xi, decrease the population cost
 +
CCf(xi)+f(xr)
 +
 
 +
If xr is better than the best ever found (i.e. Best), set Best=xr.
 +
 
 +
 
 +
 
 +
 +
.

Latest revision as of 09:39, 22 September 2015

Basic reflection/expansion (r0)

We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved. The idea is that a move from xworst to xworst2 is probably a good one, so, on the contrary, the same move applied to xbest is probably a bad one, i.e. it tends to deteriorate the position. But on the other hand, it also gives a chance to escape from the attraction basin of xbest.

Of course, for a unimodal landscape, this is a waste of time, but for multimodal ones, it may be useful. Moreover, this move is not applied on all dimensions, but only on some of them, according to the probability estimated at the end of the selection phase. So, finally, the formulae to define the new point xe are, for each dimension d:

if (rand(0,1)<p)
xr,d=xbest,d+(xworst2,dxworst,d)
else
xr,d=xi,d

If xr is better than xi, decrease the population cost CCf(xi)+f(xr)

If xr is better than the best ever found (i.e. Best), set Best=xr.



.