paradiseo/edo/src/edoSamplerNormalAdaptive.h
nojhan 38e3f40bad cleaner numerical errors management for EDO adaptive algos
- Change the ill-condition continuator to use eigen decomposition of the
covariance matrix, just like in the adaptive estimator.
- Add a warning message in adaptive sampler.
2020-03-17 12:05:56 +01:00

112 lines
3.6 KiB
C++

/*
The Evolving Distribution Objects framework (EDO) is a template-based,
ANSI-C++ evolutionary computation library which helps you to write your
own estimation of distribution algorithms.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Copyright (C) 2010 Thales group
*/
/*
Authors:
Johann Dréo <johann.dreo@thalesgroup.com>
Pierre Savéant <pierre.saveant@thalesgroup.com>
*/
#ifndef _edoSamplerNormalAdaptive_h
#define _edoSamplerNormalAdaptive_h
#include <cmath>
#include <limits>
#include <edoSampler.h>
/** Sample points in a multi-normal law defined by a mean vector, a covariance matrix, a sigma scale factor and
* evolution paths. This is a step of the CMA-ES algorithm.
*
* @ingroup Samplers
* @ingroup CMAES
* @ingroup Adaptivenormal
*/
#ifdef WITH_EIGEN
template< class EOT, typename D = edoNormalAdaptive< EOT > >
class edoSamplerNormalAdaptive : public edoSampler< D >
{
public:
typedef typename EOT::AtomType AtomType;
typedef typename D::Vector Vector;
typedef typename D::Matrix Matrix;
edoSamplerNormalAdaptive( edoRepairer<EOT> & repairer )
: edoSampler< D >( repairer)
{}
EOT sample( D& distrib )
{
unsigned int N = distrib.size();
assert( N > 0);
// T = vector of size elements drawn in N(0,1)
Vector T( N );
for ( unsigned int i = 0; i < N; ++i ) {
T( i ) = rng.normal();
}
assert(T.innerSize() == N );
assert(T.outerSize() == 1);
// mean(N,1) + sigma * B(N,N) * ( D(N,1) .* T(N,1) )
Vector sol = distrib.mean()
+ distrib.sigma()
* distrib.coord_sys()
* (distrib.scaling().cwiseProduct(T) ); // C * T = B * (D .* T)
assert( sol.size() == N );
/*Vector sol = distrib.mean() + distrib.sigma()
* distrib.coord_sys().dot( distrib.scaling().dot( T ) );*/
#ifndef NDEBUG
bool is_finite = true;
for(long i=0; i<sol.size(); ++i) {
if(not std::isfinite(sol(i))) {
is_finite = false;
}
}
if(not is_finite) {
eo::log << eo::warnings << "WARNING: sampled solution is not finite"
<< " (the search should stop after this warning)" << std::endl;
eo::log << eo::debug << sol << std::endl;
eo::log << eo::xdebug
<< "mean:\n" << distrib.mean() << std::endl
<< "sigma:" << distrib.sigma() << std::endl
<< "coord_sys:\n" << distrib.coord_sys() << std::endl
<< "scaling:\n" << distrib.scaling() << std::endl;
}
// assert(is_finite);
#endif
// copy in the EOT structure (more probably a vector)
EOT solution( N );
for( unsigned int i = 0; i < N; i++ ) {
solution[i]= sol(i);
}
return solution;
}
};
#endif // WITH_EIGEN
#endif // !_edoSamplerNormalAdaptive_h